Java/java.lang.Object

java.lang.Object 의 위치(Position)

고인돌개발자 2021. 6. 24. 10:05

Object 클래스는 모든 클래스의 최 상위에 위치하며, 모든 클래스에서 상속받는 클래스이다.

 

따라서, Object  클래스의 주요 method 를 익히는것은 중요한 포인트가 된다.

(equals, hashCode, toString)


The Java Platform Class Hierarchy

The Object class, defined in the java.lang package, defines and implements behavior common to all classes—including the ones that you write. In the Java platform, many classes derive directly from Object, other classes derive from some of those classes, and so on, forming a hierarchy of classes.

 

At the top of the hierarchy, Object is the most general of all classes. Classes near the bottom of the hierarchy provide more specialized behavior.

 


 

사이트 참고 
https://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html

'Java > java.lang.Object' 카테고리의 다른 글

String 에 대한 고찰  (0) 2021.06.25
== equals 무엇이 다른 것인가 ??  (0) 2021.06.24
Object class , 숨겨진 최상위 객체  (0) 2021.06.20