ios:是否可以在运行时从同一类的两个定义类别中选择一个
<p><p>我为同一个类定义了两个类别,并且具有相同的功能但定义不同。我想在某些条件下在运行时选择一个类别的特定功能。
obj c 编译器是否为类别维护一些簿记。</p>
<p>我在考虑 C++(虚拟函数/Vtable),这些可以使用多态性来实现。如何在 objective-c中解决这种情况。</p>
<pre><code>Class MyClass;
File:Myclass+category1.h
@interface MyClass (CategoryOne)
-(void) printCategory()
@end
File:Myclass+category2.h
@interface MyClass (CategoryTwo)
-(void) printCategory()
@end
</code></pre>
<p>现在我在 MyClass.m 中包含了这两个头文件。是否有可能在某些运行时条件下自由选择“printCategory()”的特定定义?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>没有。如果两个类别实现相同的方法,则不确定执行哪一个。 </p>
<p>来自 <a href="https://developer.apple.com/library/mac/documentation/cocoa/conceptual/objectivec/Chapters/ocCategories.html#//apple_ref/doc/uid/TP30001163-CH20-SW1" rel="noreferrer noopener nofollow">docs</a> :</p>
<blockquote>
<p>There’s no limit to the number of categories that you can add to a class, but each category name must be different, and each should declare and define a different set of methods.</p>
</blockquote></p>
<p style="font-size: 20px;">关于ios:是否可以在运行时从同一类的两个定义类别中选择一个,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9606878/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9606878/
</a>
</p>
页:
[1]