[Kotlin] 코틀린 연산자 오버로딩 #2 컬렉션, in, rangeTo, iterator, destructuring, Property delegation, by
출처 - https://tourspace.tistory.com/119?category=797357 7.3 Collection과 range의 convention 컬렉션에서 가장 많이 쓰는 연산은 읽기, 넣기, 원소가 있는지 확인하기(contains) 입니다. 코틀린에서는 특이하게 a[b] 처럼 배열 형태로 collection을 읽을수 있으며 이 또한 convention으로 처리합니다. 7.3.1 Index operator 배열은 array[index]형태로 접근하며, collection에서 같은 방법을 제공하기 위해 index 연산자로 get 과 set을 제공합니다. data class Point(val x: Int, val y: Int) operator fun Point.get(index: Int): I..
2020. 1. 29.