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