是否有办法储存在施工过程中穿过的一般参数类型,使之达到参数。 我的目标是:
class generic<T> {
Class<T> type;
public generic() {
super();
this.type = //Something that gets class from T
}
}
我目前正在做的是:
class generic<T> {
Class<T> type;
public generic(Class<T> type) {
super();
this.type = type;
}
}
似乎毫不掩饰地必须两次确定这一类别,但我不敢肯定如何这样做。 我认为,这样做可能具有反省性,但我尚未对此进行调查。 是否有更直截了当的方法? 如果不是(作为一)信息损失的原因?