Introduction to Nullability
Explore Kotlin's solutions to nullability issues, including explicit rules and versatile tools for efficient null management.
We'll cover the following...
Understanding the need for Kotlin
Kotlin started as a remedy to Java problems, and one of the biggest problems in Java is nullability. In Java and many other languages, every variable is nullable, so it might have the null
value. Every call on a null
value leads to the famous ...