C++11标准的类型别名

1、typedef 类型名  类型别名(类型别名列表);这是传统的C++类型别名声明。

2、C++11标准下,使用using,即using 类型别名=类型名。

原文地址:https://www.cnblogs.com/Dark-King/p/9377544.html