Literal
概述
参考:
在计算机科学中,Literal(字面量) 是表示源代码中固定值的 snotation(表示法)。几乎所有计算机编程语言都具有对基本值的字面量表示,诸如:整数、浮点数以及字符串;而有很多也对布尔类型和字符类型的值也支持字面量表示;还有一些甚至对枚举类型的元素以及像数组、记录和对象等复合类型的值也支持字面量表示法。
// b 为常量,10为字面量,数据类型为整数
const int b = 10
// str 为变量,hello world!为字面量,数据类型为字符串
string str = "hello world!"
反馈
此页是否对你有帮助?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.