美文网首页
使用ParameterizedType获取泛型对象

使用ParameterizedType获取泛型对象

作者: 愚公孙子 | 来源:发表于2019-03-24 19:36 被阅读0次

    publicclassDemo{privateClass clazz;publicTgetDemo()throwsInstantiationException, IllegalAccessException{returnclazz.newInstance(); }publicstaticvoidtest()throwsInstantiationException, IllegalAccessException{ String str =newDemo().getDemo(); } }

    TypesuperClass = getClass().getGenericSuperclass();Typetype= ((ParameterizedType) superClass).getActualTypeArguments()[0];

    相关文章

      网友评论

          本文标题:使用ParameterizedType获取泛型对象

          本文链接:https://www.haomeiwen.com/subject/zyqpvqtx.html