Why is `&` (ampersand) put in front of some method parameters?

后端 未结 3 1011
面向向阳花
面向向阳花 2020-12-23 20:49

I\'ver wondered, why is it that in front of an NSError, such as below, do we put: &error and not error?

E.g.

NSArray *r         


        
3条回答
  •  情话喂你
    2020-12-23 21:01

    You need to take the address of error because the function needs to modify it. error is passed by pointer, so you need the "take address" operator & for it.

    C and Objective-C pass parameters by value. If you pass error without an ampersand and the method that you call modifies it, your function that made the call would not see any changes, because the method would operate on its local copy of NSError*.

    You know that you need an ampersand in front of the corresponding parameter if you look at the signature of the method and see ** there:

    - (NSArray *)executeFetchRequest:(NSFetchRequest *)request error:(NSError **)error
                                                //   ^ one                    ^^ two
    

提交回复
热议问题