当发送类实例时是否会调用重写,就好像它是没有重写的类型一样?

发布于 2024-10-15 14:16:08 字数 81 浏览 3 评论 0原文

拥有扩展类 A 并重写其函数的类 B,我们可以确定当发送 (B*) 的实例时,就好像它是类型 (A*) 一样,我们在类 B 中创建的重写将被调用吗?

Having Class B that extends class A and overrides its functions can we be sure that when sending instance of (B*) as if it were type (A*) our overrides we created in class B will be called?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

樱桃奶球 2024-10-22 14:16:08

只要 A 上的方法被定义为虚拟,指针和引用都会出现这种情况。例如

class A {
  virtual void Method() {
    cout << "A::Method" << endl;
  }
};

class B {
  // "virtual" is optional on the derived method although some
  // developers add it for clarity
  virtual void Method() {
    cout << "B::Method" << endl;
  }
};

void Example1(A* param) {
  param->Method();
}

void Example2(A& param) {
  param.Method();
}

void main() {
  B b;
  Example1(&b);  // Prints B::Method
  Example2(b);   // Prints B::Method
}

As long as the method on A is defined as virtual this will be the case for both pointers and references. For example

class A {
  virtual void Method() {
    cout << "A::Method" << endl;
  }
};

class B {
  // "virtual" is optional on the derived method although some
  // developers add it for clarity
  virtual void Method() {
    cout << "B::Method" << endl;
  }
};

void Example1(A* param) {
  param->Method();
}

void Example2(A& param) {
  param.Method();
}

void main() {
  B b;
  Example1(&b);  // Prints B::Method
  Example2(b);   // Prints B::Method
}
柠檬色的秋千 2024-10-22 14:16:08

是的,如果函数被声明为虚拟 - 请参阅 http://www.parashift.com/c++-faq-lite/virtual-functions.html

Yes, if the functions are declared virtual - see http://www.parashift.com/c++-faq-lite/virtual-functions.html

荒路情人 2024-10-22 14:16:08

仅当 A 中的函数被声明为虚拟时。当声明为虚拟时,即使转换为父类,也会调用任何重写的子函数。

Only if the function in A is declared virtual. When declared virtual, any overriden child functions are called even when cast as a parent class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文