我知道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);