Java - 使用字段作为变量类型

时间:2014-10-22 19:44:25

标签: java generics

我试图做类似的事情:

public class Foo {
    public Class<?> type;
    public void FooMethod() {
        type NewClass = new type();
    }
}

我知道这可以用泛型来完成,但是我需要制作一个Foo类型的数组,而且我不能让我这样做。还有其他办法吗?

谢谢:)

0 个答案:

没有答案