属性有自动初始化吗?

发布于 2024-10-08 19:19:30 字数 43 浏览 4 评论 0原文

我想知道属性是否在对象初始化期间自动设置为 nil 或者它们具有随机值?

I was wondering if attributes were automatically set to nil during an object's initialization or they have random values?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

[浮城] 2024-10-15 19:19:30

所有实例变量都保证被初始化为 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).

凉城凉梦凉人心 2024-10-15 19:19:30

如果这个问题代表的是Objective-C,我会说当您声明变量时,您应该初始化变量的所有值。

在声明变量时显式初始化变量有两个好处:

  1. 变量的值没有歧义。
  2. 阅读您的代码的其他人的可读性。

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:

  1. There is no ambiguity in what the value of the variable is.
  2. Readability for others who read your code.
层林尽染 2024-10-15 19:19:30

在Java中,类的数据成员被设置为默认值。即字符串= null ,int = 0。

In Java, the data members of a class are set their default values. I.e string = null ,int =0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文