A constructor cannot be virtual

后端 未结 2 1704
孤街浪徒
孤街浪徒 2021-02-10 06:04

In one of the C++ tutorials in internet, i found out the below description on why a constructor cannot be virtual

We cannot declare a virtual constructor

相关标签:
2条回答
  • 2021-02-10 06:36

    As Bjarne himself explains in his C++ Style and Technique FAQ:

    A virtual call is a mechanism to get work done given partial information. In particular, "virtual" allows us to call a function knowing only an interfaces and not the exact type of the object. To create an object you need complete information. In particular, you need to know the exact type of what you want to create. Consequently, a "call to a constructor" cannot be virtual.

    0 讨论(0)
  • 2021-02-10 06:36

    The constructor cannot be virtual because the standard says so.

    The standard says so because it wouldn't make sense. What would a virtual constructor do?

    Virtual methods are used in polymorphism... how should polymorphism work if you don't even have the objects yet?

    We should specify the exact type of the object at compile time, so that the compiler can allocate memory for that specific type.

    We should specify the exact type at compile time because we want an object of that type... I found their description very confusing too.

    Also, in the paragraph it doesn't say this is the reason why constructors can't be virtual. It explains why virtual methods shouldn't be called from the constructor, but that's about it.

    0 讨论(0)
提交回复
热议问题