由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Help with a c++ const variable
相关主题
why int** cannot convert to const int** ?把一个function pointer作为参数传入一个function的语法是什么?
C++ Q05: pointer to constant variable请教一个const pointer的问题
[合集] static const代替define的performance tradeoff在哪里?问一道brainbench上的问题
a simple C++ question谁给解释一下这个c question
请问const myClass &src 和myClass const &src有什么区别?问题
大侠进来看看这个问题C++ Function Pointer Array 的问题
a question about const reference数组指针的问题
关于函数返回值的问题[c++] reference 真得不能bound to a second object 么?
相关话题的讨论汇总
话题: const话题: variable话题: getsize话题: int话题: c++
进入Programming版参与讨论
1 (共1页)
lz
发帖数: 23
1
I define the following class A
class A
{
A(const A& a)
{
int size=a.getsize();// line4
}
public:
int getsize();
}
I get the following error in line 4
"can not convert 'this' pointer from const A to A& "
Can you guys tell me the reason?
Thanks!
r****r
发帖数: 115
2
int getsize() const;

【在 lz 的大作中提到】
: I define the following class A
: class A
: {
: A(const A& a)
: {
: int size=a.getsize();// line4
: }
: public:
: int getsize();
: }

lz
发帖数: 23
3
does this mean that (const A&) instance can not call its const function?

【在 r****r 的大作中提到】
: int getsize() const;
t****t
发帖数: 6806
4
this means a const object can't be used to call non-const member function.
doh!

【在 lz 的大作中提到】
: does this mean that (const A&) instance can not call its const function?
e*a
发帖数: 32
5


【在 t****t 的大作中提到】
: this means a const object can't be used to call non-const member function.
: doh!

1 (共1页)
进入Programming版参与讨论
相关主题
[c++] reference 真得不能bound to a second object 么?请问const myClass &src 和myClass const &src有什么区别?
a pointer to a const addr大侠进来看看这个问题
const char *p, is it ok to change p[1] ?a question about const reference
最新某公司onsite面试题 (转载)关于函数返回值的问题
why int** cannot convert to const int** ?把一个function pointer作为参数传入一个function的语法是什么?
C++ Q05: pointer to constant variable请教一个const pointer的问题
[合集] static const代替define的performance tradeoff在哪里?问一道brainbench上的问题
a simple C++ question谁给解释一下这个c question
相关话题的讨论汇总
话题: const话题: variable话题: getsize话题: int话题: c++