Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么返回对象的方法在方括号中有星号?
例子:-(NSString *) method:val;
-(NSString *) method:val;
这是 C 符号 - 返回值是指向 NSString 的指针,而不是所述 NSString 的本地副本。它类似于(实际上我认为它在实现方面是相同的)作为返回指向结构的指针而不是直接返回结构。