前言:本文主要梳理iOS中如何使用常量、enum、宏,以及各自的使用场景。
重要的事情首先说:在iOS开发中请尽量多使用const、enum来代替宏定义(#define);随着项目工程的逐渐增大,过多的宏定义还可能影响项目的编译速度。
宏定义大家应该都不陌生,使用起来非常简单,首先我们先来看一下宏定义跟const的区别:
1.宏在编译开始之前就会被替换,而const只是变量进行修饰;
2.宏可以定义一些函数方法,const不能
3.宏编译时只替换不做检查不报错,也就是说有重复定义问题。而const会编译检查,会报错
那到底什么时候使用宏,什么时候该使用const?
定义全局变量的时候,我们应该尽量先考虑使用 static 方式声名const来替代使用宏定义。const不能满足的情况再考虑使用宏定义。比如用以下定义:
1
2
|
static NSString * const CLASSNAMEconst = @ "Hello" ;
static const CGFloat CLASSNAMEWidth = 10.0; |
代替:
1
2
|
#define CLASSNAMEDEFINE @"Hello" #define CLASSNAMEWIDTH 10.0 |
对于整型类型,代替宏定义直接定义整型常量比较好的办法是使用enum,使用enum时推荐使用NS_ENUM和NS_OPTIONS宏。比如用以下定义:
1
2
3
|
typedef NS_ENUM(NSInteger,TestEnum) { MY_INT_CONST = 12345
}; |
代替:
1
|
#define MY_INT_CONST 12345 |
NS_OPTIONS定义方式如下:
1
2
3
4
5
6
|
typedef NS_OPTIONS(NSInteger, SelectType) { SelectA = 0,
SelectB = 1 << 0,
SelectC = 1 << 1,
SelectD = 1 << 2
}; |
下面顺便说一下const 的一些使用方式,主要说明这几种写法的区别:
1
2
3
4
5
|
const NSString *constString1 = @ "I am a const NSString * string" ;
NSString const *constString2 = @ "I am a NSString const * string" ;
static const NSString *staticConstString1 = @ "I am a static const NSString * string" ;
static NSString const *staticConstString2 = @ "I am a static NSString const * string" ;
NSString * const stringConst = @ "I am a NSString * const string" ;
|
全局变量:
1
2
3
4
5
6
|
//全局变量,constString1地址不能修改,constString1值能修改 const NSString *constString1 = @ "I am a const NSString * string" ;
//意义同上,无区别 NSString const *constString2 = @ "I am a NSString const * string" ;
// stringConst 地址能修改,stringConst值不能修改 NSString * const stringConst = @ "I am a NSString * const string" ;
|
constString1 跟constString2 无区别,外部使用要配合extern字段如:
在ViewController.m中定义全局变量在TestViewController.m中使用需要使用
1
2
|
extern NSString *constString1; NSLog(@ "constString1:%@\n" ,constString1);
|
局部常量:
1
2
3
4
|
//作用域只在本文件中,在其他类中使用需引用定义的类 static const NSString *staticConstString1 = @ "I am a static const NSString * string" ;
static NSString const *staticConstString2 = @ "I am a static NSString const * string" ;
//--------------------------- |
总结:宏定义能用const,enum替换的以后就少用宏定义吧,然后...两点半了,我也该洗洗去睡了。有任何问题或者指点请直接留言,欢迎拍砖~最后感谢你的时间~