gpt4 book ai didi

c++ - 从派生构造函数调用基类方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:03:12 25 4
gpt4 key购买 nike

class Base {
public:
Base() {}

void Foo(int x) {...}
};

class Derived : public Base {
public:
Derived(int args) {
/* process args in some way */

Foo(result);
}
};

是否允许在派生类的构造函数中调用基类的方法?我想这很好,因为应该完全构造 Base 对象,但我想检查一下以防万一。

最佳答案

Is it allowed to call a method of the base class in the constructor of the derived class?

是的。请注意 virtual 函数。如果从 Derived 派生的类覆盖虚函数,同时将 Derived 构造为该进一步派生类的子对象,则动态类型始终为 Derived,因此不会调用在进一步派生类中覆盖的虚函数。 (析构函数也是如此,顺便说一句。)

I would imagine this is fine as the Base object should be fully constructed, but I wanted to check just in case.

你的推理是正确的。

关于c++ - 从派生构造函数调用基类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3075208/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com