typedef定义类型别名

typedef 已有类型 新名称;
eg:
type int Counter;
typedef struct point FKPoint;
typedef enum season FKSeason;
typedef int (func) (int);
typedef void (^FKPrintBlock) (NSString
);

你可能感兴趣的:(typedef定义类型别名)