java类反射越过泛型检查
2021/5/3 22:55:23
本文主要是介绍java类反射越过泛型检查,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.ArrayList; //通过反射越过泛型检查 public class ReflectDemo6 { public static void main(String[] args) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { ArrayList<Integer> integers = new ArrayList<>(); integers.add(10); integers.add(20); integers.add(30); // 不能通过检查 // integers.add("hello"); //通过反射越过检查 Class<? extends ArrayList> integersClass = integers.getClass(); Method add = integersClass.getMethod("add", Object.class); add.invoke(integers,"hello"); System.out.println(integers); } }
这篇关于java类反射越过泛型检查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25Springboot应用的多环境打包项目实战
- 2024-11-25SpringBoot应用的生产发布项目实战入门教程
- 2024-11-25Viite多环境配置项目实战:新手入门教程
- 2024-11-25Vite多环境配置项目实战入门教程
- 2024-11-25Springboot应用的生产发布资料:新手入门教程
- 2024-11-25创建springboot项目资料:新手入门教程
- 2024-11-25创建Springboot项目资料:新手入门教程
- 2024-11-25JAVA创业资料:初学者必备的JAVA创业指南
- 2024-11-25Java创业资料:新手入门必备Java编程教程与创业指南
- 2024-11-25JAVA语音识别项目项目实战入门教程