反射:
List list = new ArrayLIst;
Clazz clazz = list.getClass();
Method add = clazz.getDeclaredMethod(“add”,Object.class);
add.invoke(list,“kl”);
通过对象获取Clazz对象,通过Clazz对象过去list中add方法。
反射:
List list = new ArrayLIst;
Clazz clazz = list.getClass();
Method add = clazz.getDeclaredMethod(“add”,Object.class);
add.invoke(list,“kl”);
通过对象获取Clazz对象,通过Clazz对象过去list中add方法。
本文标题:java基础
本文链接:https://www.haomeiwen.com/subject/hxendltx.html
网友评论