属性有自动初始化吗?
我想知道属性是否在对象初始化期间自动设置为 nil 或者它们具有随机值?
I was wondering if attributes were automatically set to nil
during an object's initialization or they have random values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
所有实例变量都保证被初始化为 nil 或零。这也适用于非对象 iVar(int、BOOL、float)。
All instance variables are guaranteed to be initialized to nil or zero. This goes for non-object iVars as well, (int, BOOL, float).
如果这个问题代表的是Objective-C,我会说当您声明变量时,您应该初始化变量的所有值。
在声明变量时显式初始化变量有两个好处:
If this question is indicative of Objective-C, I'd say that you should initialize all values of a variable when you declare them.
Explicitly initializing variables when they're declared gives you two benefits:
在Java中,类的数据成员被设置为默认值。即字符串= null ,int = 0。
In Java, the data members of a class are set their default values. I.e string = null ,int =0.