Hanbit the Developer
Kotlin Documentation | Equality 본문
Category: Concepts
문서 링크: https://kotlinlang.org/docs/equality.html
- Structural equality: ==
- Referential equality: ===
Structural equality
a == b는 다음 코드로 번역된다:
a?.equals(b) ?: (b === null)
equals 함수로 contents(주소값이 아니라)를 비교하며, elvis 연산자를 통해 a가 null인 경우 b 또한 null인지 체크한다.
equals(other: Any?): Boolean을 override함으로써 ==을 커스터마이징 할 수 있다.
Referential equality
주소 체크. primitive의 경우에는 ==와 같은 연산을 하게 된다.
*Java에서는 ==가 참조 비교, equals()가 내용 비교이다.(===는 없음)
'Kotlin' 카테고리의 다른 글
Kotlin Documentation | Annotations (0) | 2023.05.22 |
---|---|
Kotlin Documentation | Asynchronous programming techniques (0) | 2023.05.22 |
Kotlin Documentation | Null safety (0) | 2023.05.22 |
Kotlin Documentation | Control flow (0) | 2023.05.22 |
Kotlin Documentation | Types (0) | 2023.05.22 |