0

这是我的简化代码,需要您对实现不佳的多态性提出宝贵意见。

class X
{
    public:
        void test();
    protected:
        virtual void foo() const = 0;
};


class Y : public X
{
    public:
        void foo(){ cout << "hello" << endl; }
};


int main()
{   
    X *obj = new Y();
} 

我在编译时收到以下错误。

test.cpp: In function ‘int main()’:
test.cpp:23: error: cannot allocate an object of abstract type ‘Y’
test.cpp:14: note:   because the following virtual functions are pure within ‘Y’:
test.cpp:9: note:   virtual void X::foo() const
4

3 回答 3

4

应该

class Y : public X
{
    public:
        void foo() const { cout << "hello" << endl; }
};

因为

void foo() const

void foo()

不是同一个功能。

于 2012-11-15T23:42:14.983 回答
2

fooY 类中的函数与 X::foo 具有不同的签名

class Y : public X
{
  public:
    void foo() const { cout << "hello" << endl; }
};
于 2012-11-15T23:42:11.417 回答
1

fooY 类中的不是 const,因此您不会重载 X 类中的虚拟。

于 2012-11-15T23:42:11.293 回答