j****j 发帖数: 270 | 1 的用法,有些书本身讲的也比较糊涂,看哪本书比较好? |
f***d 发帖数: 9 | 2
Effective C++ might help...
【在 j****j 的大作中提到】 : 的用法,有些书本身讲的也比较糊涂,看哪本书比较好?
|
c******a 发帖数: 18 | 3 const int foo() 返回一个const int
int foo() const 作为类成员函数,不改变类的成员变量
【在 j****j 的大作中提到】 : 的用法,有些书本身讲的也比较糊涂,看哪本书比较好?
|
a****l 发帖数: 8211 | 4 spend 2 hours and it will be all clear. There are only so many options...
【在 j****j 的大作中提到】 : 的用法,有些书本身讲的也比较糊涂,看哪本书比较好?
|
l**a 发帖数: 423 | 5 class CC {...};
CC CC::operator+(const &right) const;
usage:
result = A+B;
B is the first const, parameter inside the parentheses, could not be changed.
A is the second const, So A cannt be changed either. |