jafsldkfj 2013-10-03 03:46 采纳率: 0%
浏览 1846
已采纳

在JAVA反射中间遇到的超奇怪的问题!

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了?

  • 写回答

1条回答

  • solomon5926 2013-10-04 06:11
    关注

    你看帮助文档就能找到答案了,下面我贴一段Class类中getMethod()方法的描述,里面说得非常清楚,获得的Class数组是没有排序的。
    public Method[] getMethods() throws SecurityException
    Returns an array containing Method objects reflecting all the public member methods of the class or interface represented by this Class object, including those declared by the class or interface and those inherited from superclasses and superinterfaces. Array classes return all the (public) member methods inherited from the Object class. The elements in the array returned are not sorted and are not in any particular order. This method returns an array of length 0 if this Class object represents a class or interface that has no public member methods, or if this Class object represents a primitive type or void.

    看这句话
    The elements in the array returned are not sorted and are not in any particular order.
    当你修改代码之后就,Method[]中的元素的顺序就会被打乱。

    不知道我给的答案是不是完全正确,期待更好的解释。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?