1、类成员函数访问修饰const,申明和定义中须保持一致;
class IntCell{... ; int read( ) const;...}
int IntCell::read( ) const { return storedValue }