以下代码片段在 C++ 中完全有效(至少已编译):
我的文件.cxx:
static const int MY_CONST_ONE = 1;
static const int MY_CONST_TWO = MY_CONST_ONE;
另一方面,在 C 中编译完全相同的代码会失败并显示错误消息 ( http://ideone.com/erBkm9 ):
my_file.c:2:1: error: initializer element is not constant
我的文件.c:
static const int MY_CONST_ONE = 1;
static const int MY_CONST_TWO = MY_CONST_ONE;
是什么原因?它是编译器特定的还是一些已知的 C 与 C++ 的区别?