分配@property的setter是如何实现的?

发布于 2024-12-13 16:25:59 字数 127 浏览 2 评论 0原文

在将 ivar 分配给新值之前,setter 的实现是否首先检查新值是否与旧值不同?

是否有文档(或源代码)参考显示如何合成属性的所有不同排列(取决于属性,分配保留等)?

Does the implementation of the setter first check if the new value is different than the old value before assigning the ivar to the new value?

Is there a documentation (or source code) reference that shows all the different permutations (depending on the attributes, assign, retain, etc.) of how a property is synthesized?

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

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

发布评论

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

评论(2

今天小雨转甜 2024-12-20 16:25:59

我无法想象分配设置器首先检查以前的值。这将完全浪费 CPU 周期,因为无论哪种方式结果都是相同的。该文档明确说明了各种属性的语义,但它没有准确地向您显示合成了哪些代码。

I can't imagine the assign setter checks previous values first. That would be a complete waste of CPU cycles, since the result will be the same either way. The documentation explicitly states the semantics of the various attributes, but it doesn't show you exactly what code is synthesized.

末蓝 2024-12-20 16:25:59

Objective-C 文档解释了这一点。实际发生的细节是特定于实现的。

复制
指定对象的副本应用于
任务。先前的值被发送释放消息。副本是
通过调用复制方法来制作。该属性仅适用于
对象类型,必须实现 NSCopying 协议。

分配
指定 setter 使用简单赋值。这个属性是
默认值。您可以将此属性用于标量类型,例如 NSInteger
和 CGRect。

保留
指定应该在
分配时的对象。先前的值会发送一条释放消息。

...

非原子
指定访问器是非原子的。默认情况下,访问器是原子的。

...

[_internal lock]; // lock using an object-level lock
id result = [[value retain] autorelease];
[_internal unlock];
return result;

The Objective-C documentation explains this. The details of what actually happens are implementation specific.

copy
Specifies that a copy of the object should be used for
assignment. The previous value is sent a release message. The copy is
made by invoking the copy method. This attribute is valid only for
object types, which must implement the NSCopying protocol.

assign
Specifies that the setter uses simple assignment. This attribute is
the default. You use this attribute for scalar types such as NSInteger
and CGRect.

retain
Specifies that retain should be invoked on the
object upon assignment. The previous value is sent a release message.

...

nonatomic
Specifies that accessors are nonatomic. By default, accessors are atomic.

...

[_internal lock]; // lock using an object-level lock
id result = [[value retain] autorelease];
[_internal unlock];
return result;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文