我只是想知道Java中的Object类的超类是什么?
答案 0 :(得分:6)
java.lang.Object
没有超级课程,this is not an implementation of clone()
method of java.lang.Object
,您正在查看ArrayList#clone()
答案 1 :(得分:4)
答案 2 :(得分:2)
对象没有超类,试试这个
System.out.println(Object.class.getSuperclass());
它打印空
答案 3 :(得分:1)
Object class
有 No Super class 。 Check out