标识符别名

typedef

缺点:无法用于模版类

//typedef  实际名   别名
typedef std::vector<std::string>::iterator itType;

using

可用于模版具体化

// using 别名 = 实际名

//例1
using itType = std::vector<std::string>::iterator; 

//例2
template<typename T>
using arr12 = std::array<T,12>;

arr12<double> a1;
arr12<std::string> a2;

//例3
template<typename T>
class BinNode
{
	using bp = BinNode<T>*;
	bp .....
};

#define

宏定义在整个文件内都是可见的,包括导入的库, 该操作实际是对整个文件该别名的替换操作

//例1 普通别名
#define itType std::vector<std::string>::iterator

//例2 模版具体化,文中须有模版,此处是直接替换操作
#define bp BinNode<T>*

template<class T>
class BinNode
{
	bp .....
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值