可可触感。类方法 init 版本 alloc/init 之间的语义差异是什么?

发布于 2024-08-14 02:43:59 字数 258 浏览 3 评论 0原文

有人可以帮我澄清一下这两者之间的语义区别吗:

self.foo = [NSMutableDictionarydictionaryWithCapacity:theCapacity];

self.foo = [[[NSMutableDictionary alloc] initWithCapacity:theCapacity] autorelease];

可以互换吗?如果不是,它们究竟有何不同。

提前致谢。

干杯, 道格

Could someone please clarify for me the semantic difference between these two:

self.foo = [NSMutableDictionary dictionaryWithCapacity:theCapacity];

self.foo = [[[NSMutableDictionary alloc] initWithCapacity:theCapacity] autorelease];

Are the interchangable? If not how exactly do they differ.

Thanks in advance.

Cheers,
Doug

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

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

发布评论

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

评论(1

七度光 2024-08-21 02:43:59

在这种情况下,它们是完全可以互换的。

DictionaryWithCapacity:theCapacity 只是一个快捷方式

In this case they are totally interchangeable.

dictionaryWithCapacity:theCapacity is just a shortcut

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