ctf_Martin 2017-09-11 05:22 采纳率: 0%
浏览 5345

Java类的泛型参数能作为另外一个泛型类的参数传入吗?

最近遇到一个棘手的泛型问题,精简化后,代码如下:

 import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;


public class testMain {
    public static void main(String[] args) throws IllegalAccessException, InstantiationException {
        People people = new People();

        people.doIt("I'm a student!");
    }
}

interface Say {
    void say(String word);
}

class Student implements Say {
    public void print(String say) {
        System.out.println(say);
    }

    @Override
    public void say(String word) {
        print(word);
    }
}

interface ExecutorCallbackHandler<M, P> {
    void execute(M mapper, P param);
}


class DoSomeThing {

    public <M, P> void batchDo(ExecutorCallbackHandler<M, P> executorCallbackHandler, P param) throws IllegalAccessException, InstantiationException {
        Type[] genTypes = executorCallbackHandler.getClass().getGenericInterfaces();
        Type[] params = ((ParameterizedType) genTypes[0]).getActualTypeArguments();
        Class<M> mapperClass = (Class<M>) params[0];
        M mapper = mapperClass.newInstance();
        executorCallbackHandler.execute(mapper, param);
    }
}

class AbstractPeople<M extends Say> {

    private DoSomeThing doSomeThing = new DoSomeThing();

    public void doIt(String param) throws InstantiationException, IllegalAccessException {
        doSomeThing.batchDo(new ExecutorCallbackHandler<M, String>() {
            @Override
            public void execute(M people, String param) {
                people.say(param);
            }
        }, param);
    }
}

class People extends AbstractPeople<Student> {
}

泛型参数Student,经过AbstractPeople.doIt传入DoSomeThing.batchDo,但是解析时,泛型参数M并未解析成Student,导致出现异常。

请问,是什么原因,如何解决

  • 写回答

4条回答 默认 最新

  • ctf_Martin 2017-09-11 05:25
    关注

    调试时,参数M并未按预期转换成Student类型
    图片说明

    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大