gpt4 book ai didi

c++ - Const 对 Copy Constructor 重要吗?

转载 作者:行者123 更新时间:2023-11-30 01:48:38 25 4
gpt4 key购买 nike

<分区>

我在 DEV C++ 上运行这个程序,它显示 const 错误。但在 Visual Studio 中它工作正常。现在 const 对于复制构造函数很重要吗?

#include<iostream>
using namespace std;

class Test
{
/* Class data members */
public:
Test(Test &t) { /* Copy data members from t*/}
Test() { /* Initialize data members */ }
};

Test fun()
{
cout << "fun() Called\n";
Test t;
return t;
}

int main()
{
Test t1;
Test t2 = fun();
return 0;
}

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