如NSFileManager中关于判断是否目录的
学习是最好的投资!
地址引用fileExistsAtPath:isDirectory:方法里面可以对型参(比如说,bool *example这个指针)通过(比如说,*example = YES)的方式进行赋值,从而改变外部变量(比如说,你的isDir)的值。
fileExistsAtPath:isDirectory:
bool *example
*example = YES
因为fileExistsAtPath:isDirectory这个方法需要改变isDir的值,如果直接传入isDir(相当于直接传入一个BOOL值)是行不通的,所以用&isDir将isDir的地址传给方法,这样该方法就可以对这个地址所保存的变量进行赋值或更改,这里&的作用就是获取isDir的地址。Why is '&' (ampersand) put in front of some method parameters?
fileExistsAtPath:isDirectory
isDir
BOOL
&isDir
&
因为
fileExistsAtPath:isDirectory
这个方法需要改变isDir
的值,如果直接传入isDir
(相当于直接传入一个BOOL
值)是行不通的,所以用&isDir
将isDir
的地址传给方法,这样该方法就可以对这个地址所保存的变量进行赋值或更改,这里&
的作用就是获取isDir
的地址。Why is '&' (ampersand) put in front of some method parameters?