C++中static const的初始化
时间:2010-08-08 来源:haox2653
今天发现了一个GCC与VC之间区别,关于类的static const成员能否在类声明时初始化。
class A
{
static const int a = 10;
public:
static bool _stdcall fun();
bool myfun(void);
};
static const int a = 10;在DEV C++中编译通过,但VC中报错误:pure specifier can only be specified fo functions
相关阅读 更多 +