1.Object是所有类、数组、枚举类的父类。所有对象可以调用Object类的方法。 2.常用方法有 //创建并返回此对象的一个副本,具体方法详解见Object类之clone()文章 // https://blog.csdn.net/armylu55/article/details/79694713 protected Object clone(); //返回该对象的hashcode值,但Object类中并没有给出具体实现,原因详见 // https://www.cnblogs.com/dolphin0520/p/3681042.html //关于Hash表详见 // http://www.cnblogs.com/dolphin0520/archive/2012/09/28/2700000.html public int hashCode(); //关于该方法详解见 // https://blog.csdn.net/armylu55/article/details/79696664 public boolean equals( Object obj)