-
-
Save kmizu/1123a902716674a73ebcf48fa8f9150a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A() { | |
init { | |
val s: String = getStr() | |
println("${s.length}") // java.lang.NullPointerException | |
} | |
fun getStr(): String { | |
return str | |
} | |
private val str: String = "aaa" | |
} | |
fun main(args: Array<String>) { | |
A() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment