全部博文(42)
分类: C/C++
2010-08-08 18:22:28
今天发现了一个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