本文共 2550 字,大约阅读时间需要 8 分钟。
类在Objective-C中是一个非常重要的概念。类可以看作是一个对象,它本身也是一个Class类型的对象,简称为“类对象”。在Objective-C中,Class类型的定义是typedef struct objc_clas *Class。通过类名,我们可以引用对应的类对象,而每个类都有且仅有一个类对象。
在Objective-C中,类之间可以有多种关系,包括继承和分类关系。
Person类是一个常见的例子,它继承自NSObject类。以下是Person类的接口定义:
// Person.h#import@interface Person : NSObject@property int age;+(void)test;@end
Person类的实现代码如下:
// Person.m#import "Person.h"@implementation Person+(void)test { NSLog(@"Person调用了test++++++");}+(void)load { NSLog(@"Person----load");}+(void)initialize { NSLog(@"Person---initialize");}@end Student类继承自Person类,并添加了一些特定的属性和方法。以下是Student类的接口定义:
// Student.h#import "Person.h"@interface Student : Person@end
Student类的实现代码如下:
// Student.m#import "Student.h"@implementation Student+(void)load { NSLog(@"Student---load");}+(void)initialize { NSLog(@"Student---initialize");}@end GoogStudent类继承自Student类,进一步扩展了Student类的功能。以下是GoogStudent类的接口定义:
// GoodStudent.h#import "Student.h"@interface GoodStudent : Student@end
GoogStudent类的实现代码如下:
// GoodStudent.m#import "GoodStudent.h"@implementation GoodStudent+(void)load { NSLog(@"GoodStudent---load");}+(void)initialize { NSLog(@"GoodStudent---initialize");}@end Person(MJ)类是Person类的一个分类,提供了额外的功能。以下是Person(MJ)类的接口定义:
// Person+MJ.h#import "Person.h"@interface Person (MJ)@end
Person(MJ)类的实现代码如下:
// Person+MJ.m#import "Person+MJ.h"@implementation Person (MJ)+(void)load { NSLog(@"Person(MJ)---load");}+(void)initialize { NSLog(@"Person(MJ)---initialize");}@end 在Objective-C中,类是程序中的基本构建块。以下是关于类本质的详细说明。
在Objective-C中,Class类型的定义是typedef struct objc_clas *Class。类对象可以通过类名访问。以下是类对象访问的示例代码:
Person *p1 = [[Person alloc] init];Person *p2 = [[Person alloc] init];Person *p3 = [[Person alloc] init];Class c1 = [p1 class];Class c2 = [p2 class];Class c3 = [Person class];NSLog(@"c1=%p,c2=%p,c3=%p", c1, c2, c3);
类在初始化时会执行+load和+initialize方法。+load方法在程序启动时会自动调用,而+initialize方法则是在第一次使用类时调用。
以下是类初始化的示例代码:
Person *p = [[Person alloc] init];Class c = [p class];[Person test];[c test];Person *p2 = [[c new] init];NSLog(@"Person ---%d", p2.age);
在Objective-C中,+load和+initialize是类方法,用于初始化类的行为。
+load方法会在程序启动时自动调用,并且遵循以下顺序执行:
+initialize方法是在第一次使用类时调用一次,顺序也是先调用父类的+initialize,再调用子类的+initialize。
Class c = [Person class];Person *p = [Person new]; Class c2 = [p class];通过以上方法,可以轻松获取类对象。
转载地址:http://jjik.baihongyu.com/