可能重复:
What are the differences between typedef and using in C++11?
以下代码编译并运行。我的问题是“typedef”和“using”方法之间用于重命名模板特化的区别是什么?
template<typename T>
struct myTempl{
T val;
};
int main (int, char const *[])
{
using templ_i = myTempl<int>;
templ_i i;
i.val=4;
typedef myTempl<float> templ_f;
templ_f f;
f.val=5.3;
return 0;
}
如果没有差异,您更喜欢哪一个? /为什么要使用... = ...版本?
答案 0 :(得分:31)
他们是一样的。
引用C ++ 11标准(或草案具体):
typedef-name 也可以由 alias-declaration 引入。 使用 关键字后面的标识符 成为 typedef-name 和可选的 attribute-specifier-seq 后面的标识符属于那个 的typedef名。它具有与 typedef 说明符引入的语义相同的语义。特别是它 没有定义新类型,它不会出现在 type-id 。
中
我认为“与typedef说明符相同的语义”说明了一切。