iphone - ARC 是否意味着我应该声明静态类型而不是 id?
<p><p>ARC 文档在 LLVM 网站上是公开的,因此 NDA 在这里不是问题。</p>
<p>我发现在为 ARC 准备代码时,我在很多以前会使用 (id) 的情况下使用 (NSObject*)。 </p>
<p>例如,如果我正在编写一个 initWithParent: 方法,它可能是</p>
<pre><code>-(id) initWithParent: (NSObject*) parent;
</code></pre>
<p>我以前会写的地方</p>
<pre><code>-(id) initWithParent: (id) parent;
</code></pre>
<p>我的问题是——这种做法有意义吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我相信这适用于大多数情况,至少如果您的对象派生自 NSObject(并非所有东西都如此)。 <a href="http://unixjunkie.blogspot.com/2008/03/id-vs-nsobject-vs-id.html" rel="noreferrer noopener nofollow">Here's an interesting blog post on the subject</a> (独立于 ARC)。</p></p>
<p style="font-size: 20px;">关于iphone - ARC 是否意味着我应该声明静态类型而不是 id?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/6585278/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/6585278/
</a>
</p>
页:
[1]