由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个C++的问题
相关主题
请教一个基础C++问题问个html和c++编程的问题
有没有办法让一个类的变量只读,不是const?问个a=b 的问题
问个C++ 编译器临时变量的问题 (转载)问个 C++到C的问题
请问这个C++程序有什么问题吗question about const reference
c++ 弱问题:static const char* const 这两个const 分别是什么意思?引用的几个基本问题,有点糊涂
Re: 几个C++的问题[合集] const 变量问题
问个c++问题问个问题
问个C++ Segmentation Fault的问题关于const和volatile修饰变量或指针的问题
相关话题的讨论汇总
话题: const话题: ht话题: int话题: c++话题: member
进入Programming版参与讨论
1 (共1页)
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是什么意思??

1 (共1页)
进入Programming版参与讨论
相关主题
关于const和volatile修饰变量或指针的问题c++ 弱问题:static const char* const 这两个const 分别是什么意思?
[合集] 为什么 const member 不能是 static.Re: 几个C++的问题
member and friend问个c++问题
why use static function here?问个C++ Segmentation Fault的问题
请教一个基础C++问题问个html和c++编程的问题
有没有办法让一个类的变量只读,不是const?问个a=b 的问题
问个C++ 编译器临时变量的问题 (转载)问个 C++到C的问题
请问这个C++程序有什么问题吗question about const reference
相关话题的讨论汇总
话题: const话题: ht话题: int话题: c++话题: member