由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - question about C++ class
相关主题
问一个C++的面试问题考考大家,其实也不只是C++,C#/Java也一样
C++ | list, queue or map on user defined classesCan we define pure virtual function? (转载)
【讨论】问一道很简单的C++题。。。。 (转载)两个class的交叉引用问题
请教C++类设计问题问一个inheritance的初级问题
A C++ inheritance question!c++ covariant type(受不了C++啦!!!)
[合集] can one type cast reference in C++题2
class D:public B;请教一个static 函数的问题
再来一个C++模板问题问个C++ virtual function的问题 (转载)
相关话题的讨论汇总
话题: public话题: class话题: int话题: c++话题: data
进入Programming版参与讨论
1 (共1页)
q****2
发帖数: 7
1
I have two class A and B as fllowing
class A {
public:
int i;
public:
A() : i(1) { }
};
class B : public A {
public:
int i;
public:
B() : A(), i(2) { }
};
A has data i, B has a new data i, in fact B has two int numbers. I want to
know how to use the i defined in A with a B object.
Thanks a lot.
t****t
发帖数: 6806
2
write A::i, then

【在 q****2 的大作中提到】
: I have two class A and B as fllowing
: class A {
: public:
: int i;
: public:
: A() : i(1) { }
: };
: class B : public A {
: public:
: int i;

q****2
发帖数: 7
3
Just figure out
b.A::i
b.B::i
Thanks

【在 t****t 的大作中提到】
: write A::i, then
d***y
发帖数: 65
4
why do u both name them "i"?

【在 q****2 的大作中提到】
: Just figure out
: b.A::i
: b.B::i
: Thanks

d******n
发帖数: 42
5
d******n
发帖数: 42
6
Guess you want to define a virtual function.
l**a
发帖数: 423
7
this is name hiding
1 (共1页)
进入Programming版参与讨论
相关主题
问个C++ virtual function的问题 (转载)A C++ inheritance question!
property vs field[合集] can one type cast reference in C++
c++ define 一问class D:public B;
Call assembly in c++ under linux再来一个C++模板问题
问一个C++的面试问题考考大家,其实也不只是C++,C#/Java也一样
C++ | list, queue or map on user defined classesCan we define pure virtual function? (转载)
【讨论】问一道很简单的C++题。。。。 (转载)两个class的交叉引用问题
请教C++类设计问题问一个inheritance的初级问题
相关话题的讨论汇总
话题: public话题: class话题: int话题: c++话题: data