博客
关于我
OC开发之——类的本质(33)
阅读量:81 次
发布时间:2019-02-26

本文共 2550 字,大约阅读时间需要 8 分钟。

一 概述

类在Objective-C中是一个非常重要的概念。类可以看作是一个对象,它本身也是一个Class类型的对象,简称为“类对象”。在Objective-C中,Class类型的定义是typedef struct objc_clas *Class。通过类名,我们可以引用对应的类对象,而每个类都有且仅有一个类对象。

二 类间关系

在Objective-C中,类之间可以有多种关系,包括继承和分类关系。

2.1 Person类

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

2.2 Student类(Person的子类)

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

2.3 GoogStudent类(Student的子类)

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

2.4 Person(MJ)类(Person的分类)

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中,类是程序中的基本构建块。以下是关于类本质的详细说明。

3.1 Class

在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);

3.2 类的初始化(load, initialize)

类在初始化时会执行+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);

四 +load和+initialize

在Objective-C中,+load+initialize是类方法,用于初始化类的行为。

4.1 +load

+load方法会在程序启动时自动调用,并且遵循以下顺序执行:

  • 先加载父类,再加载子类。
  • 先加载元原始类,再加载分类。
  • 即使类没有被使用,也会在程序启动时加载。
  • 4.2 +initialize

    +initialize方法是在第一次使用类时调用一次,顺序也是先调用父类的+initialize,再调用子类的+initialize

    4.3 获取类对象的2种方式

  • 类方法方式:Class c = [Person class];
  • 对象方法方式:Person *p = [Person new]; Class c2 = [p class];
  • 通过以上方法,可以轻松获取类对象。

    转载地址:http://jjik.baihongyu.com/

    你可能感兴趣的文章
    Python 之 filecmp
    查看>>
    python请求html_使用Python请求获取HTML?
    查看>>
    Python 之匿名函数和偏函数
    查看>>
    python 之栈的实现
    查看>>
    python语音播放
    查看>>
    python语言:装饰器原理
    查看>>
    Python 交互式数据可视化详解
    查看>>
    python语言有哪些优点和缺点_Python有哪些优缺点,你了解吗?
    查看>>
    Python 从入门到精通:30天速成教程到底有多狠?你能坚持下来吗?
    查看>>
    Python 从数据库中存储和检索密码的最安全方法
    查看>>
    Python语言及其应用 - 知识点遍历
    查看>>
    Python 优化提速的 8 个小技巧
    查看>>
    Python 余弦相似度与皮尔逊相关系数 计算
    查看>>
    python 使用execjs 报编码错误解决办法,UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xac in position 145: il
    查看>>
    python 使用filetype校验文件
    查看>>
    Python 使用flush函数将缓冲区数据立即写磁盘
    查看>>
    python 使用in判断不准确,in不好使
    查看>>
    Python 使用pandas 进行查询和统计详解
    查看>>
    Redis 配置文件redis.conf详细解释
    查看>>
    python网络爬虫(2)——scrapy框架的基础使用
    查看>>