[Kotlin] Unit vs Nothing
kotlin에서는 java void 타입과 동일한 타입으로 Unit을 도입하였습니다. 물론 kotlin native로는 오직 하나의 값을 가지는 것 또한 Unit으로 칭합니다. 아래는 Kotlin 레퍼런스 문서의 설명입니다. Unit Unit은 "함수가 리턴은 하지만 그 결과값이 무의미하다"라는 의미입니다. object Unit For Common, JVM, JS The type with only one value: the Unit object. This type corresponds to the void type in Java. For Native The type with only one value: the Unit object. Nothing 반면 Nothing은 함수가 리턴 자체를 하지 않는다를 의..
Languages/Kotlin
2019. 11. 12. 14:53