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 5037端口被adb自己占了
  • ¥15 python:excel数据写入多个对应word文档
  • ¥60 全一数分解素因子和素数循环节位数
  • ¥15 ffmpeg如何安装到虚拟环境
  • ¥188 寻找能做王者评分提取的
  • ¥15 matlab用simulink求解一个二阶微分方程,要求截图
  • ¥30 乘子法解约束最优化问题的matlab代码文件,最好有matlab代码文件
  • ¥15 写论文,需要数据支撑
  • ¥15 identifier of an instance of 类 was altered from xx to xx错误
  • ¥100 反编译微信小游戏求指导