开发者社区> 问答> 正文

C++一道关于继承的题目,求大神解答,感激不尽

Dynamic_cast
Total: 65 Accepted: 22
Time Limit: 1sec Memory Limit:256MB
Description
Three classes A, B and C are shown below:
class A {
public:
virtual ~A() {};
};
class B: public A {}; 
class C: public B {};
You are to implement a function string verify(A *), such that it returns "grandpa" if the passed-in argument points to a class A object, and "father" for a class B object , "son" for a class C object.
Your submitted source code should include the whole implementation of the function verify, but without any class defined above.
No main() function should be included.

展开
收起
a123456678 2016-03-06 12:59:34 1840 0
1 条回答
写回答
取消 提交回答
  •  #include <iostream>
    #include <string>
    using namespace std;
    
    class A {
    public:
    virtual ~A() {};
    public: virtual string gettype()
    {
        return "grandpa";
    }
    public: static string verify(A * a)
    {
        return a->gettype();
    }
    };
    
    class B: public A 
    {
    public: virtual string gettype()
    {
        return "father";
    }
    };
    
    class C: public B
    {
    public: virtual string gettype()
    {
        return "son";
    }
    };
    
    int main(int argc, char* argv[])
    {
        A a;
        B b;
        C c;
        cout << A::verify(&a) << endl;
        cout << A::verify(&b) << endl;
        cout << A::verify(&c) << endl;
        return 0;
    }
    2019-07-17 18:54:23
    赞同 展开评论 打赏
问答分类:
C++
问答标签:
问答地址:
相关产品:
问答排行榜
最热
最新

相关电子书

更多
使用C++11开发PHP7扩展 立即下载
GPON Class C++ SFP O;T Transce 立即下载
GPON Class C++ SFP OLT Transce 立即下载