有以下程序: #include <iostream> using namespace std; class Base { int a; public: Base(int x) { a-x

admin2013-02-27  15

问题 有以下程序:
    #include <iostream>
    using namespace std;
    class Base
    {
       int a;
    public:
       Base(int x) {  a-x;  }
       void show() {  cout<<a;  }
    };
    class Derived : public Base
    {
       int b;
    public:
       Derived

选项

答案2

解析 本例程序中类Derived是从基类Base公有继承来的。主函数中定义了基类对象b和一个基类指针pb,又定义了派生类Derived的对象d。由于Derived是Base的子类型,因此可以将派生类Derived的对象d的地址赋值给指向基类Base的指针pb,但这时指针pb只能使用从基类Base继承的成员。所以通过对象指针pb调用的show函数是基类的成员函数show(),从而输出基类私有数据成员a的值2。
转载请注明原文地址:https://kaotiyun.com/show/YoNp777K
0

最新回复(0)