s*******d 发帖数: 1027 | 1 int x :: ht() const
{
.....
}
这里const是什么意思?? |
J*******d 发帖数: 205 | 2 这个函数不会改变 this 的状态
int x :: ht() const
{
.....
}
这里const是什么意思??
【在 s*******d 的大作中提到】 : int x :: ht() const : { : ..... : } : 这里const是什么意思??
|
s*******d 发帖数: 1027 | 3 this的状态具体指什么? 是member 变量么? 还是别的东西
【在 J*******d 的大作中提到】 : 这个函数不会改变 this 的状态 : : int x :: ht() const : { : ..... : } : 这里const是什么意思??
|
t****t 发帖数: 6806 | 4 usually this has type
A * const this
but if there is const, then this is
const A* const this
【在 s*******d 的大作中提到】 : this的状态具体指什么? 是member 变量么? 还是别的东西
|
k*o 发帖数: 46 | 5 for example, class x has a member int my;
in this ht, you can not change it like my = 1;
【在 J*******d 的大作中提到】 : 这个函数不会改变 this 的状态 : : int x :: ht() const : { : ..... : } : 这里const是什么意思??
|