关键字也称为保留字,它是由C+ +语言本身预先定义好的一类单词。
const continue default do
short signed sizeof static
struct switch typedef union
unsigned void volatile while
bool catch class const_cast
delete dynamic_cast explicit false
friend inline mutable namespace
new operator private protected
public reinterpret_case static_cast template
typeid typename using virtual
标识符是用户为程序中各种需要命名的"元素"所起的名字。标识符的组成要符合一定的规则:
(1)标识符是一个以字母或下划线开头的,由字母、数字、下划线组成的字符串。
(4)标识符不宜过长。C+ +语言一般设定一个标识符的有效长度为32个字符。
常量是指在程序中固定不变的值。常量一般有两种表示形式,即符号常量和字面常量。C+ +语言中符号常量的名字就是一个标识符,而字面常量却是一类特殊的单词。字面常量分为整型、浮点型、字符型和字符串型四类。
运算符是对程序中的数据进行操作的一类单词。C+ +语言中运算符的种类非常丰富,其中有:
(4)关键字运算符。
标点符号是在程序中起分割内容和界定范围作用的一类单词。