对 nil 对象的快速枚举

发布于 2024-12-11 11:15:51 字数 373 浏览 1 评论 0原文

这里应该发生什么?安全吗?

NSArray *nullArray=nil;
for (id obj in nullArray) {
  // blah
}

更具体地说,我是否必须这样做:

NSArray *array=[thing methodThatMightReturnNil];
if (array) {
  for (id obj in array) {
    // blah
  }
}

或者这样可以吗?:

for (id obj in [thing methodThatMightReturnNil]) {
  // blah
}

What should happen here? Is it safe?

NSArray *nullArray=nil;
for (id obj in nullArray) {
  // blah
}

More specifically, do I have to do this:

NSArray *array=[thing methodThatMightReturnNil];
if (array) {
  for (id obj in array) {
    // blah
  }
}

or is this fine?:

for (id obj in [thing methodThatMightReturnNil]) {
  // blah
}

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

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

发布评论

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

评论(2

雪若未夕 2024-12-18 11:15:51

快速枚举是通过方法 - countByEnumerateWithState:objects:count: 实现的,该方法返回 0 表示循环结束。由于 nil 对于任何方法都会返回 0,因此您的循环永远不应该执行。 (所以它是安全的。)

Fast enumeration is implemented through the method - countByEnumeratingWithState:objects:count:, which returns 0 to signal the end of the loop. Since nil returns 0 for any method, your loop should never execute. (So it's safe.)

青芜 2024-12-18 11:15:51

什么都不会发生。 for-in 循环使用 NSFastEnumeration 协议来迭代集合中的元素,因此您实际上是向 nil 发送消息,这在 Objective-C 中是安全的。

Nothing will happen. A for-in loop uses the NSFastEnumeration protocol to iterate over the elements in a collection, so you're essentially sending a message to nil which is safe in Objective-C.

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