iOS:方法返回类型应该是 X 类的子类
<p><p>我有一个名为“BaseEntry”的类和一些特定的类,如“EntryFoo”和“EntryBar”,它们是“Base Entry”的子类。</p>
<p>现在有一个函数 getEntry 应该返回一个 Object,它是 BaseEntry 的子类。在 Java 中这不是问题,但我不知道如何在 iOS 的 Objective-C 中解决这个问题。</p>
<p>感谢您的帮助!
亚历克斯</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在 Objective-C 中执行此操作的标准方法是只返回一个 'id' 类型的对象;将其视为 Java 中的 <code>Object</code>。但是,<code>id</code> 稍微好一点,因为您可以将返回值分配给类型化的值而无需强制转换。</p>
<p>为了澄清,您的选择是:</p>
<pre><code>// Assuming -(BaseEntry*)getEntry;
id entry = ;
;
// Assuming -(BaseEntry*)getEntry; - note cast required
FooEntry *entry = (FooEntry*);
;
// Assuming -(id)getEntry; - no cast required
FooEntry *entry = ;
;
</code></pre></p>
<p style="font-size: 20px;">关于iOS:方法返回类型应该是 X 类的子类,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11841670/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11841670/
</a>
</p>
页:
[1]