4

可能重复:
如何在 C++ 中使用基类的构造函数和赋值运算符?

class A
{
protected:
    void f();
}

class B : public A
{
protected:
    void f()
    {
         A::f();
    }
}

我们可以这样使用父类的功能,但是我不知道如何使用父类的操作符。

4

1 回答 1

6

用户定义类型的运算符只是具有时髦名称的成员函数。因此,它与您的示例非常相似:

#include <iostream>

class A
{
protected:
    A& operator++() { std::cout << "++A\n"; return *this; }
};

class B : public A
{
public:
    B& operator++()
    {
        A::operator++();
        return *this;
    }
};


int main()
{
    B b;
    ++b;
}
于 2012-04-09T10:24:04.163 回答