Skip to content

Instantly share code, notes, and snippets.

@MostafaNasiri
Created November 15, 2019 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MostafaNasiri/1a35dfa93296bfa99b7a0ee52af059cc to your computer and use it in GitHub Desktop.
Save MostafaNasiri/1a35dfa93296bfa99b7a0ee52af059cc to your computer and use it in GitHub Desktop.
fun main() {
var name: String? = "Arthur"
var nameLength = name!!.length // nameLength = 6
name = null
nameLength = name!!.length // KotlinNullPointerException
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment