typedef的应用场景
在开发过程中,常常会遇到需要定义某些数据类型时,其关键字过长:
//例如: unsigned long long int
//处理
typedef unsigned long long int RFInt;
RFInt num = 930218;
NSLog(@" num = %d",a); //输出: num = 930218
//同理可以使用 typedef的方式来简化 block 类型数据的定义
在开发过程中,常常会遇到需要定义某些数据类型时,其关键字过长:
//例如: unsigned long long int
//处理
typedef unsigned long long int RFInt;
RFInt num = 930218;
NSLog(@" num = %d",a); //输出: num = 930218
//同理可以使用 typedef的方式来简化 block 类型数据的定义
本文标题:typedef 的使用
本文链接:https://www.haomeiwen.com/subject/efabdftx.html
网友评论