What does it mean when “virtual” is in “class Foo

2019-04-07 06:56发布

What does it mean when "virtual" is in "class Foo : public virtual Bar" as opposed to "virtual void frob()"?

For a given method there are 8 cases stemming from the presence or absence of virtual in the following three locations.

  1. A superclass's functions.
  2. The inheritance chain for this class.
  3. This classes functions.

I think I understand how numbers 1 and 3 interact but number 2 seems redundant. Is it? What am I not understanding?

标签: c++ virtual
1条回答
疯言疯语
2楼-- · 2019-04-07 07:01

That's virtual inheritance, you do it when you know you'll be doing multiple inheritance. That page goes into way more detail.

查看更多
登录 后发表回答