定义类型别名时出现语法错误

时间:2015-03-30 11:12:57

标签: c++ c++11

尝试定义最简单的类型别名时,我收到以下错误: 第4行syntax error : missing ';' before '='。 代码非常简单:

#include "stdafx.h"
#include <iostream>
using namespace std;
//data type aliases - using
using C = char;
int _tmain(int argc, _TCHAR* argv[])
{
    getchar();
    return 0;
}

如果我使用typedef方法,则不会发生这种情况。使用using关键字定义类型别名的正确方法/位置是什么?为什么会出现此错误?我正在使用VS 2010 C ++编译器。

1 个答案:

答案 0 :(得分:2)

这是定义类型别名的正确方法。 VS 2010不支持此功能,因此您需要升级才能使用它。