《C++ Primer》第五版,中文版。p44。const int ci2 = ci + 1;const int ci = 4;上面的无法通过编译。
const int ci = 4;要写在前面,否则c1没有定义。