标签: java generics
请回答我的问题。
class parent<T> { T ob; public parent(); ob=new T(); //Giving error for this statement ,Parameterized can not be created }
答案 0 :(得分:0)
您无法实例化类型参数。您可能需要阅读Oracle - Restrictions on Generics