由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 多继承和虚继承的面试问题 (转载)
相关主题
C++的虚继承只在多重继承的场合才有意义吧?这个在c++ const不变,不能用相同地址的变量改,咋做的
问个BT问题 :)(c )HTML print an image
compare double to float这个 perl 输出的数字为什么自动加了换行?谢谢!
问个虚函数的作用A try-catch problem in C++
题2a simple question for C++ class
Please help me take a look at the programcout怎么不换行输出大量字符串?
One c++ non-type template questionwhich func will be called?
这个是个c++的bug 么?请问一个exception题目
相关话题的讨论汇总
话题: 继承话题: public话题: class话题: print话题: 输出
进入Programming版参与讨论
1 (共1页)
g*********s
发帖数: 1782
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: gandjmitbbs (Nothing), 信区: JobHunting
标 题: 多继承和虚继承的面试问题
发信站: BBS 未名空间站 (Sat Dec 15 21:44:48 2007)
class A{
public A { std::cout< }
class B: public A{
... // print B
}
class C: public A, pulic B {
... // print C
}
int main(){
C obj;
}
输出: AABC。继承关系是三角形:A->B->C加A->C。
问题是:这三条边如果考虑虚继承,每条边有两种可能,共八种。那么其他七种组合的
输出是什么。
g*********s
发帖数: 1782
2
没有高手知道吗?

【在 g*********s 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: gandjmitbbs (Nothing), 信区: JobHunting
: 标 题: 多继承和虚继承的面试问题
: 发信站: BBS 未名空间站 (Sat Dec 15 21:44:48 2007)
: class A{
: public A { std::cout<: }
: class B: public A{
: ... // print B
: }

1 (共1页)
进入Programming版参与讨论
相关主题
请问一个exception题目题2
ask a C++ inheritance questionPlease help me take a look at the program
A C++ QuestionOne c++ non-type template question
关于文件读取的C++ 问题?这个是个c++的bug 么?
C++的虚继承只在多重继承的场合才有意义吧?这个在c++ const不变,不能用相同地址的变量改,咋做的
问个BT问题 :)(c )HTML print an image
compare double to float这个 perl 输出的数字为什么自动加了换行?谢谢!
问个虚函数的作用A try-catch problem in C++
相关话题的讨论汇总
话题: 继承话题: public话题: class话题: print话题: 输出