rokkonet

PC・Androidソフトウェア・アプリの開発・使い方に関するメモ

kotlin : 'lateinit' modifier is not allowed on properties of primitive types

2022 Jul. 19.

対応その1

出典
kotlinで値がprimitive wrapperのためにlateinitできない場合 - Be an Idealistic Realist
Kotlin : 'notNull delegate' vs 'lateinit' - Qiita

var myInt: Int by Delegates.notNull()


対応その2

出典
'lateinit' modifier is not allowed on properties of primitive type はなぜ起こるのか。 - TRY ANDROID DEV

var myInt: Int?