gpt4 book ai didi

c++ - 在类构造函数中调用虚函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:51:44 26 4
gpt4 key购买 nike

在 C++ 中,我们不应该调用构造函数/析构函数中的虚函数。

如果我在类范围内显式调用这些函数会怎样?

从本质上讲,我们不想从虚拟中获利。

下面的伪代码是否正确?

 struct CA{ 
CA(){ CA::foo();} // calling foo() without CA is wrong
virtual int foo(){}
};

struct CB{
CB(){ CB::foo();} // calling foo() without CB is wrong
virtual int foo();
}

最佳答案

CB::foo() 调用不是动态调度的,因此您或阅读此代码的任何人都不会遇到不幸的惊喜。完全没问题。事实上,简单地调用 foo() 也很好,因为在这种情况下,标准是相同的,尽管您可能想为您的同事留下评论。

关于c++ - 在类构造函数中调用虚函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15272508/

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