iPhone 合成
在学习 Objective C 时,我已经习惯了 @property 和 @synthesize 的工作原理。
//usual way
@synthesize world;
但最近我遇到的做法是 @synthesize 是这样的:
//new way
@synthesize world=world_;
有人可以解释一下为什么使用这种技术吗?
谢谢,
马克
Whilst learning Objective C I've gotten used to how the @property and @synthesize works.
//usual way
@synthesize world;
But recently I've come across practices were @synthesize is like this:
//new way
@synthesize world=world_;
Could someone explain why this technique is used please?
Thanks,
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信这是为了避免实际的 ivar 名称和属性名称之间的混淆。
所以你可以拥有
,然后它会让你或其他从事此类工作的开发人员在你真正想要该属性时更难无意中访问 ivar,反之亦然。不同的名称可以更清楚地表明哪个是哪个。
I believe this is used to avoid confusion between the actual ivar name and the property name.
so you can have
and then it makes it harder for you or some other developer working on this class to inadvertently access the ivar when you actually wanted the property or vice-versa. The different names make it clearer which is which.
来自 Objective-C 2 手册:
from the Objective-C 2 manual: