Replies: 4 comments 1 reply
-
equals와 hashCode 메서드를 사용하는 이유는 객체의 동등성 비교와 해시코드 생성을 위해서이다. 객체의 동등성에는 물리적 동일성과 논리적 동등성이 있다. equals메서드는 객체의 참조(메모리 주소)를 비교하지만, 일반적으로 객체의 내부 상태(멤버 변수 등)를 비교하여 동등성 여부를 판단한다. hashCode는 객체를 해시 테이블과 같은 자료구조에 저장할 때 사용된다. |
Beta Was this translation helpful? Give feedback.
-
동등성을 비교하려면 |
Beta Was this translation helpful? Give feedback.
-
동등성 비교 |
Beta Was this translation helpful? Give feedback.
-
.
Beta Was this translation helpful? Give feedback.
All reactions