最佳答案
我有一个如下的模板类:
class MyClass<T>
{
T field;
public void myMethod()
{
field = new T(); // gives compiler error
}
}
如何在类中创建 T 的新实例?