Replies: 2 comments
-
객체를 처리하기 위한 메서드
스레드를 위한 메서드
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
java.lang.Object
java.lang.Object
를 확장한다.Object 클래스가 제공하는 메서드
객체 처리를 위한 메서드
toString()
객체를 문자열로 표현하기 위한 메서드
System.out.println(obj.toString());
System.out.println("plus " + obj);
equals()
두 객체의 참조(reference)가 동일한지 비교하기 위한 메서드
hashCode()
객체의 해시 코드(= 16진수로 제공되는 객체의 메모리 주소)를 리턴하는 메서드
clone()
자신을 복제하여 새로운 인스턴스를 생성하는 메서드
값
만 복사하기 때문에, 참조 타입인 변수가 있는 클래스는 완전한 인스턴스 복제가 이루어지지 않는다. 즉, 참조 타입의 경우, 원본과 복제본이같은 객체를 공유
하게 된다. (= 얕은 복사)Cloneable
인터페이스를 구현해야 한다. (아무나 막 복제해가면 안 되니까!)스레드 처리를 위한 메서드
...
Beta Was this translation helpful? Give feedback.
All reactions