gpt4 book ai didi

C++如何使用参数化构造函数实例化对象?

转载 作者:行者123 更新时间:2023-11-27 22:52:10 27 4
gpt4 key购买 nike

我在 C++ 中对参数化构造函数有一些理解上的问题。如果我有一个类,其中一个构造函数有两个函数参数,我如何在另一个类头文件中实例化它?

例如:

public:
MyFunction myfunction(param1, param2); //makes an error

如何声明这样的对象?

最佳答案

你需要在类声明中写MyFunction myfunction;

然后在 myfunction 所属类的构造函数的成员初始化列表中,写入

/*Your constructor here*/ : myfunction(param1, param2)
{
/*the constructor body*/
}

冒号后的位是成员初始化列表。 param1param2 显然是该构造函数的参数

关于C++如何使用参数化构造函数实例化对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36330007/

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