【Kotlin】Unitとは
Unitとは?
Javaのvoid
に対応する、Kotlinのオブジェクトのようです。
The type with only one value: the Unit object. This type corresponds to the void type in Java.
つまり、下記のような戻り値のない関数などは、Kotlinではvoid
ではなく、Unit
が返されます。
// return: Unit fun hoge() { println("") }
また、Unit
はシングルトンなので、下記のようにUnit
を返すこともできます。
fun hoge() { Unit }
てな感じで本日も以上となります🍺