Objective-c 中的 Smalltalk 块?

发布于 2024-09-27 19:25:39 字数 99 浏览 5 评论 0原文

Objective-C 是否支持“a la Smalltalk”块?

在 Smalltalk 中,块类似于其他语言中的“闭包”或“lambda 表达式”或“无名函数”。

Does Objective-C support blocks "a la Smalltalk"?

In Smalltalk, blocks are similar to "closures" or "lambda-expressions" or "nameless functions" found in other languages.

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

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

发布评论

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

评论(2

送你一个梦 2024-10-04 19:25:39

是的:http://developer.apple。 com/library/mac/#documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html

开箱即用,它们仅在 XCode 3.2 或更高版本附带的 Objective-C 2.0 版本中受支持。这意味着如果您想使用官方构建工具,您将需要 Snow Leopard。此处描述了 10.5 的潜在解决方法:http://thirdcog.eu/pwcblocks/#leoiphone

Yes: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html

Out of the box, they're only supported in the version of Objective-C 2.0 that comes with XCode 3.2 or later. This means you'll need Snow Leopard if you want to use the official build tools. A potential work-around for 10.5 is described here: http://thirdcog.eu/pwcblocks/#leoiphone

心是晴朗的。 2024-10-04 19:25:39

是的,
举个例子:

[[myString componentsSeparatedByString:@"\n"] enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSString *line = (NSString *)obj;
    //do what your going to do with line...
}];

Yep,
take this example:

[[myString componentsSeparatedByString:@"\n"] enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSString *line = (NSString *)obj;
    //do what your going to do with line...
}];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文