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类反射越过泛型检查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程