码迷,mamicode.com
首页 > 其他好文 > 详细

using来定义类的别名,typedef,#define

时间:2019-12-12 23:55:50      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:fine   计算机   efi   int   就是   作用   signed   定义   def   

宏定义:其实就是替换作用

#define TRUE 1    //结尾无分号,宏名TRUE,计算机会把所有TRUE替换为1.

typedef:定义类的别名

tpyedef unsigned int UInt; //unsigned int类的别名UInt

C++11中,用using来定义类的别名:

using UInt = unsigned int; //更清晰

using来定义类的别名,typedef,#define

标签:fine   计算机   efi   int   就是   作用   signed   定义   def   

原文地址:https://www.cnblogs.com/xixixing/p/12032235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!