需要用到反射
- public static void main(String[] args) throws Exception {
- ArrayList<Integer> list = new ArrayList<Integer>();
- String s = "abcdefg";
- Method method = list.getClass().getMethod("add",Object.class);
- method.invoke(list,s);
- System.out.println(list);
- }
复制代码
|
|