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; }
要查看更详细的Objective - C 指针,可以查看“Objective-C 指针“一章。
现在,让我们调用函数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 */ return; } @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:27:17.716 demo[6721] Before swap, value of a : 100 2013-09-09 12:27:17.716 demo[6721] Before swap, value of b : 200 2013-09-09 12:27:17.716 demo[6721] After swap, value of a : 200 2013-09-09 12:27:17.716 demo[6721] After swap, value of b : 100
这表明变化反映的函数之外,也不像调用值的变化并不能反映函数之外。