本帖最后由 玥夜 于 2014-8-26 21:37 编辑
- public class Test3 {
- public static void main(String[] args) throws Exception
- {
- ArrayList<Integer> list = new ArrayList<Integer>();
- list.add(2);
- list.add(4);
-
- Method m = list.getClass().getMethod("add", Object.class);
- // Method m = list.getClass().getMethod("add", String.class);
- //为毛这样写就是错的呢。。。
- m.invoke(list, "a");
- System.out.println(list);
- }
- }
复制代码
谢谢 |
|