Skip to content

Instantly share code, notes, and snippets.

@yyYank
Last active October 5, 2016 12:53
Show Gist options
  • Save yyYank/8023124edf2945c1b6d4554029152cea to your computer and use it in GitHub Desktop.
Save yyYank/8023124edf2945c1b6d4554029152cea to your computer and use it in GitHub Desktop.
class A() {
private val str: String
init {
str = "aaa"
val s: String = getStr()
println("${s.length}") // java.lang.NullPointerException
}
fun getStr(): String {
return str
}
}
fun main(args: Array<String>) {
A()
}
class A() {
private val str: String = "aaa"
init {
val s: String = getStr()
println("${s.length}") // java.lang.NullPointerException
}
fun getStr(): String {
return str
}
}
fun main(args: Array<String>) {
A()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment