浅谈iOS关于头文件的导入问题
2019/7/9 22:56:58
本文主要是介绍浅谈iOS关于头文件的导入问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
关于import和@class的使用问题
一.@class的出现可以适当减少编译时间,提高效率。
现在假设有两个类,一个是Teacher类,一个是Students类。
Teacher类
#import <Foundation/Foundation.h> #import "Students.h" @interface Teacher : NSObject @property (copy,nonatomic)NSString *firstName; @property (copy,nonatomic)NSString *lastName; @property (strong,nonatomic)Students *student; @end
在类中声明三个属性,其中有一个属性为Students类属性。这时候既然使用到Students类,就需要导入该类的头文件。如如上代码。
注意:此时使用的是import导入的。这个方法可行但是不够优雅,存在一个问题,在声明文件中,我们不需要知道Students类的全部细节,只需要知道类名是Students就可以。如下使用@class解决问题,这叫“向前声明”该类。
Teacher.h
#import <Foundation/Foundation.h> @class Students; @interface Teacher : NSObject @property (copy,nonatomic)NSString *firstName; @property (copy,nonatomic)NSString *lastName; @property (strong,nonatomic)Students *student; @end
Teacher.m
#import "Teacher.h" #import "Students.h" @implementation Teacher @end
Teacher类的实现文件就需要知道Students类的全部借口细节,因此就需要在此时使用import “Students.h”。
将引入头文件的时机尽量延后,只有在确有需要的时候才引入,这样就可以减少类的使用者所需引入的头文件的数量。假如在.h文件的时候就是用import导入,就会引入很多不需要使用的内容,这必然会增加编译时间。
二.@class的出现也两个类互相引用的问题。
Teacher.h
#import <Foundation/Foundation.h> #import "Students.h" @interface Teacher : NSObject @property (copy,nonatomic)NSString *firstName; @property (copy,nonatomic)NSString *lastName; @property (strong,nonatomic)Students *student; @end
Students.h
#import <Foundation/Foundation.h> #import "Teacher.h" @interface Students : NSObject @property (strong,nonatomic)Teacher *teacher; @end
在Students类中import “Teacher.h”,同时在Teacher类中import “Students”类,这就造成了循环引用问题,程序在编译的时候就会出现无休止的编译。此时只需要将其中一个import改成@class即可,如果两者的.h文件都不需要知道对方类的全部借口细节,最佳方案是全部使用@class。
小结
除非确实有必要,就不要引入头文件。一般来说,在.h文件中应该使用向前声明来提及别的类,然后在.m文件引入那些类的头文件。这样做可以尽量降低类的耦合。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。
这篇关于浅谈iOS关于头文件的导入问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创