public static void main(String[] args) {UserBean userBean=new UserBean();Method[] methods=userBean.getClass().getMethods();String name=methods[2].getName();System.out.println(name);}}输出的是getUid(),没有错Klaus。(741691740) 11:23:20但是:public static void main(String[] args) {UserBean userBean=new UserBean();Method[] methods=userBean.getClass().getMethods();String name=methods[2].getName();System.out.println(name);System.out.println(name.equals("getUid"));System.out.println(name);}}我多加了一句话。怎么就变成了输出getVaules了?
添加回答
举报
0/150
提交
取消