Skip to content

Instantly share code, notes, and snippets.

@MithraTalluri
Last active September 18, 2019 07:25
Show Gist options
  • Save MithraTalluri/e0ea88fd6fec3928c26967faea610b91 to your computer and use it in GitHub Desktop.
Save MithraTalluri/e0ea88fd6fec3928c26967faea610b91 to your computer and use it in GitHub Desktop.
val str1: String = null // compile time error
val str2: String? = null // compiles fine
val handler: EmailHandler? = null
handler.sendEmail() // compile time error
handler?.sendEmail() // compiles fine but doesn't call sendEmail() function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment