const用法

const 修饰的成员变量只能在构造函数的参数列表中初始化。
const 修饰的成员函数不能改变成员变量的值。
定义:
void function(void) const
const 修饰的对象只能调用常成员函数,不能调用非 常成员函数

Contents