C++ 友元函数与虚函数的交互

在 c++++ 中,友元函数与虚函数交互使友元函数可以访问虚函数,并调用派生类中的友元函数访问基类的私有成员。这种交互可用于访问继承体系中隐藏的数据或实现多态行为。C++ 友元函数与虚函数的交互
在 C++ 中,友元函数是一种能够访问类私有

在 c++++ 中,友元函数与虚函数交互使友元函数可以访问虚函数,并调用派生类中的友元函数访问基类的私有成员。这种交互可用于访问继承体系中隐藏的数据或实现多态行为。

C++ 友元函数与虚函数的交互

C++ 友元函数与虚函数的交互

在 C++ 中,友元函数是一种能够访问类私有和保护成员的函数。虚函数则允许派生类重写基类的方法。友元函数和虚函数的交互可以通过以下方式实现:

情况 1:友元函数与虚函数同时访问

当友元函数与虚函数同时访问类成员时,需要明确指定友元函数访问的是哪个类的虚函数。

class Base {
public:
  virtual void foo() { std::cout << "Base::foo()n"; }
};

class Derived : public Base {
public:
  virtual void foo() override { std::cout << "Derived::foo()n"; }
};

class Friend {
public:
  static void callFoo(Base& base) { base.foo(); } // 调用 Base::foo()
  static void callFoo(Derived& derived) { derived.foo(); } // 调用 Derived::foo()
};

登录后复制

情况 2:虚函数中的友元函数调用

派生类的虚函数可以调用友元函数,从而访问基类的私有或受保护成员。

class Base {
public:
  virtual void foo();
friend class Derived;
};

class Derived : public Base {
public:
  virtual void foo() override {
    // 调用友元函数访问 Base 的私有成员
    std::cout << m_privateMember << "n";
  }

private:
  int m_privateMember;
};

登录后复制

实战案例:访问隐藏数据

友元函数和虚函数可以被结合使用,以访问继承体系中隐藏的数据。

class Shape {
public:
  virtual double getArea() const = 0;
};

class Circle : public Shape {
public:
  Circle(double radius) : m_radius(radius) {}
  double getArea() const override { return M_PI * m_radius * m_radius; }

private:
  double m_radius;
};

class Rectangle : public Shape {
public:
  Rectangle(double width, double height) : m_width(width), m_height(height) {}
  double getArea() const override { return m_width * m_height; }

private:
  double m_width, m_height;
};

// 友元函数,可访问派生类的私有成员以计算体积
template <typename T>
friend double getVolume(const T& shape) {
  return shape.getArea() * 2;
}

int main() {
  Circle circle(5);
  Rectangle rectangle(3, 4);
  std::cout << "Circle area: " << circle.getArea() << "n";
  std::cout << "Rectangle area: " << rectangle.getArea() << "n";
  std::cout << "Circle volume: " << getVolume(circle) << "n";
  std::cout << "Rectangle volume: " << getVolume(rectangle) << "n";
}

登录后复制

以上就是C++ 友元函数与虚函数的交互的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:老板不要肥肉,转转请注明出处:https://www.dingdanghao.com/article/356618.html

(0)
上一篇 2024-04-16 15:20
下一篇 2024-04-16 16:00

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号