C++11 的 typedef 和 using 有什么区别

2022-02-10 20:54:55 浏览数 (1)

在 C 11 中下面的两条语句表达的都是一个意思,

代码语言:javascript复制
typedef int MyInt;

using MyInt = int;

同时 using 还可在模板中使用,

代码语言:javascript复制
emplate<class T>
using MyType = AnotherType<T, MyAllocatorType>;

typedefusing 除了 using 还可以在模板中使用,其它的都是等同的。

0 人点赞