using来定义类的别名,typedef,#define
宏定义:其实就是替换作用
#define TRUE 1 //结尾无分号,宏名TRUE,计算机会把所有TRUE替换为1.
typedef:定义类的别名
tpyedef unsigned int UInt; //unsigned int类的别名UInt
C++11中,用using来定义类的别名:
using UInt = unsigned int; //更清晰
对于结构体,不用using也不用typedef。直接就是类型名
struct s_CallbackInfo { const void *pContext; //注册回调函数时传递的指针,如this void *pThdVal; //线程要传递的参数指针 size_t nReserved[32]; //备用字段 };