使用gcnew作为复制构造函数

时间:2016-10-01 14:15:14

标签: c++-cli clr default-copy-constructor

我知道gcnew用于分配托管内存。 我也没有找到任何System::String(System::String ^)构造函数。 通常,如果你想要复制一个System::String课程,你会使用像

这样的课程
System::String ^s1 = gcnew System::String("a");
System::String ^s2 = System::String::Copy(s1);

但是这个呢?

System::String ^s1 = gcnew System::String("a");
System::String ^s2 = gcnew System::String(s1);

0 个答案:

没有答案