@2017-12-16
缘由
在学习c++标准的过程中(受刺激了),对于标题中的一些东西发现理解不到位啊。
int a =10;
const int a = 10;
10 是字面量
a 是变量
const int a 是常量
参考 http://zh.cppreference.com/w/cpp/language/string_literal
参考 https://www.cnblogs.com/catch/p/3500678.html
@2017-12-16
在学习c++标准的过程中(受刺激了),对于标题中的一些东西发现理解不到位啊。
int a =10;
const int a = 10;
10 是字面量
a 是变量
const int a 是常量
参考 http://zh.cppreference.com/w/cpp/language/string_literal
参考 https://www.cnblogs.com/catch/p/3500678.html