gpt4 book ai didi

c++ - 创建对象时调用的构造函数

转载 作者:行者123 更新时间:2023-11-30 02:16:24 25 4
gpt4 key购买 nike

class P{
public:
P(int x,int y) { cout << "constructor called" << endl;}
};

int main ()
{
P(5,4); // constructor called
P p(5,4); // constructor called
return 0;
}

以上两种构造函数调用有什么区别?

P(5,4)如何调用构造函数?

最佳答案

这两个调用是相同的。

唯一的区别是你将创建的对象保存在局部变量 p

关于c++ - 创建对象时调用的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54973312/

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