常量和变量都属于变量,只不过常量是赋过值后不能再改变的变量,而普通的变量可以再进行赋值操作。
例:
int
a;
//a变量
const
int
b=10;
//b为常量,10为字面量
string str=
"hello world"
;
//str为变量,hello world为也字面量
int
a;
//a变量
const
int
b=10;
//b为常量,10为字面量
string str=
"hello world"
;
//str为变量,hello world为也字面量