62,634
社区成员




//这两句话不太理解~~~
Method method = haha.getClass().getMethod("getName", new Class[] { String.class, String.class, int.class }); //这里后面为什么有三个参数?不太理解
String result = (String) method.invoke(haha, new Object[] { "Bill", "Gates" });
//这、里为什么就变两个参数了?