iOSエンジニアのつぶやき

毎朝8:30に iOS 関連の技術について1つぶやいています。まれに釣りについてつぶやく可能性があります。

【Kotlin】Unitとは

Unitとは?

Javavoidに対応する、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
    }

てな感じで本日も以上となります🍺

参考

kotlinlang.org

qiita.com

その他の記事

yamato8010.hatenablog.com

yamato8010.hatenablog.com

yamato8010.hatenablog.com