Objective-C 函数按值调用
按值传递参数给函数的方法调用复制到正式参数的函数参数的实际值。在这种情况下,该函数内的参数所做的更改参数没有影响。
默认情况下,使用的Objective-C编程语言调用值法来传递参数。在一般情况下,这意味着,在一个函数中的代码可以用来调用该函数的参数不会改变。考虑函数swap()定义如下:
/* function definition to swap the values */ - (void)swap:(int)num1 andNum2:(int)num2 { int temp; temp = num1; /* save the value of num1 */ num1 = num2; /* put num2 into num1 */ num2 = temp; /* put temp into num2 */ return; }
现在,让我们通过在下面的示例中的实际值作为调用函数swap():
#import <Foundation/Foundation.h> @interface SampleClass:NSObject /* method declaration */ - (void)swap:(int)num1 andNum2:(int)num2; @end @implementation SampleClass - (void)swap:(int)num1 andNum2:(int)num2 { int temp; temp = num1; /* save the value of num1 */ num1 = num2; /* put num2 into num1 */ num2 = temp; /* put temp into num2 */ } @end int main () { /* local variable definition */ int a = 100; int b = 200; SampleClass *sampleClass = [[SampleClass alloc]init]; NSLog(@"Before swap, value of a : %d ", a ); NSLog(@"Before swap, value of b : %d ", b ); /* calling a function to swap the values */ [sampleClass swap:a andNum2:b]; NSLog(@"After swap, value of a : %d ", a ); NSLog(@"After swap, value of b : %d ", b ); return 0; }
让我们编译并执行它,它会产生以下结果:
2013-09-09 12:12:42.011 demo[13488] Before swap, value of a : 100 2013-09-09 12:12:42.011 demo[13488] Before swap, value of b : 200 2013-09-09 12:12:42.011 demo[13488] After swap, value of a : 100 2013-09-09 12:12:42.011 demo[13488] After swap, value of b : 200
这表明,尽管它们均已改变,在函数内部的值中没有任何改变。