gpt4 book ai didi

C++ : can I do some processing before calling another constructor?

转载 作者:太空狗 更新时间:2023-10-29 23:50:20 26 4
gpt4 key购买 nike

我有一个包含两个构造函数的类。

class Foo {
Foo(B b) {... }

Foo(int n) : Foo(buildBFromInt(n)) {} ??
}

第一个需要一些对象,我想要第二个首先从更简单的类型创建对象。这可能吗?

最佳答案

从 C++11 开始是可能的。它是委托(delegate)构造函数,您使用正确的语法。

关于C++ : can I do some processing before calling another constructor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31799196/

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