1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

KotlinでNullPointerExceptionを起こす方法

Posted at

Kotlinいいですよね。色々おいしいところはあると思いますが、NullPointerExceptionが起きにくいのが個人的には一番好きです。

ただ、Javaでメモリーリークが完全になくなったわけではないのと同様に、おかしな書き方をすればヌルポを起こすことができます。反省と備忘録を兼ねてメモしておきます。

実際のコード

class First {
    private val second : Second = Second(this)
    fun hello() = second.hello()
}

class Second(private val first: First) {
    init {
        first.hello()
    }

    fun hello() = print("hello")
}

fun main() {
    First()
}

こんな風にFirstクラスへの参照をSecondクラスに渡し、Secondのinitが終わる前にFirstからSecondを参照すると、当然初期化が終わっていないのでNullPointerExceptionにこんにちはできます。

あとJavaのライブラリを呼ぶ時も気を付けないといけないですよね。こちらが原因のNullPointerExceptionも前やったことがあります。https://kotlinlang.org/docs/reference/java-interop.html

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?