1、共同点:
都是NSObject的比较Class的方法,根据类的名称判断是否属于这个类
2、区别:
以下的类层次是这样的,BaseZombie是所有僵尸类的基类,ZombieType1是继承于BaseZombie的一个类,textType是继承于ZomboeType1的类
@interface BaseZombie : NSObject
@interface ZombieType1 : BaseZombie
@interface textType1 : ZombieType1
官方文档说明isKindOfClass:
- (BOOL)isKindOfClass:(Class)aClass
Description
Returns a Boolean value that indicates whether the receiver is an instance of given class or an instance of any class that inherits from that class. (required)
//意思是返回一个BOOL类型的值,表示调用该方法的类 是否是 参数类 或者 继承于参数类
textType1 * text1 = [[textType1 alloc]init];//初始化一个测试子类
BOOL b1 = [text1 isKindOfClass:[textType1 class]];//YES
BOOL b2 = [text1 isKindOfClass:[ZombieType1 class]];//YES
官方文档说明isMemberOfClass:
- (BOOL)isMemberOfClass:(Class)aClass
Description
Returns a Boolean value that indicates whether the receiver is an instance of a given class. (required)
//意思是返回一个BOOL类型的值,表示调用该方法的类 是否是 参数类
BOOL b3 = [text1 isMemberOfClass:[textType1 class]];//YES
BOOL b4 = [text1 isMemberOfClass:[ZombieType1 class]];//NO 父类不被承认
官方文档说明isSubClasssOfClass:
//注意这是一个类方法
+ (BOOL)isSubclassOfClass:(Class)aClass
Description
Returns a Boolean value that indicates whether the receiving class is a subclass of, or identical to, a given class.
//意思是返回一个BOOL类型的值,表示调用该方法的类 是不是 参数类的一个子类 或者 是这个类的本身
BOOL b5 = [textType1 isSubclassOfClass:[ZombieType1 class]];//YES
BOOL b6 = [textType1 isSubclassOfClass:[textType1 class]];//YES
BOOL b7 = [textType1 isSubclassOfClass:[NSString class]];//NO
综上看来,isSubclassOfClass和isKindOfClass的作用基本上是一致的,只不过一个是类方法,一个是对象方法。
isKindOfClass来确定一个对象是否是一个类的成员,或者是派生自该类的成员,
isMemberOfClass只能确定一个对象是否是当前类的成员.
isMemberOfClass 筛选条件更为苛刻,只有当类型完全匹配的时候才会返回YES。