9.1单独编译
9.2储存持续性、作用域和链接性
说明符和限定符
储存说明符
- auto
- register
- static
- thread_local
- mutable
mutable:即使结构变量为const,修饰的成员也可以修改。
struct data
{
char name[30];
mutable int accesses;
};
const data veep = {"clodde",0};
veep.access++; //是允许的
cv-限定符
- const
- volatile
9.3 命名空间
匿名空间