using来定义类的别名,typedef,#define
Posted xixixing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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,#define的主要内容,如果未能解决你的问题,请参考以下文章