Skip to main content
Browse topics

Null Safety Java Interop in Kotlin

2 min read Updated June 30, 2026
Share

Introduction

Null Safety Java Interop is a fundamental concept every Kotlin developer should understand. Kotlin and Java compile to the same JVM bytecode, so you can mix both languages in one project with minimal friction.

Java types are platform types in Kotlin with unknown nullability. In this tutorial you will learn the syntax, walk through a complete example program, study the sample output, and review best practices so you can apply the concept confidently in your own projects.

Definition

  • Java types are platform types in Kotlin with unknown nullability.
  • Treat platform types carefully or annotate Java with @Nullable/@NotNull.
  • Use safe calls when Java may return null.

Syntax

kotlin
val value = javaMethod() // platform type

Null Safety Java Interop in Kotlin Example Program in Kotlin

kotlin
fun parseLength(input: String?): Int {
    return input?.length ?: 0
}

fun main(args: Array<String>) {
    println(parseLength("Kotlin"))
    println(parseLength(null))
}

Sample Output

plaintext
6
0

When to use

Use interop when migrating a Java codebase incrementally or calling mature Java libraries from Kotlin.

How it works

  1. The program starts with a main function — the entry point that runs when you execute the file.

  2. return input?.length ?: 0 demonstrates null-safe or type-safe Kotlin syntax in action.

  3. The println(parseLength("Kotlin")) statement writes a line to the console — this produces part of the sample output below.

  4. The println(parseLength(null)) statement writes a line to the console — this produces part of the sample output below.

  5. Java types are platform types in Kotlin with unknown nullability.

  6. Run the program in IntelliJ IDEA, Android Studio, or with the Kotlin command-line compiler (kotlinc / kotlin). Compare your console output with the sample output shown below.

Best Practices

Common Mistakes

Key Points

  • Java types are platform types in Kotlin with unknown nullability.
  • Treat platform types carefully or annotate Java with @Nullable/@NotNull.
  • Use safe calls when Java may return null.
  • Test the example locally and verify the output matches the sample.
  • Experiment by changing input values to see how behaviour changes.

Notes

  • Nullability annotations help Kotlin and Java agree on which values can be null at boundaries.
  • Semicolons at the end of statements are optional in Kotlin.

Frequently Asked Questions

What is Null Safety Java Interop in Kotlin?
Java types are platform types in Kotlin with unknown nullability.
When should I use Null Safety Java Interop?
Use interop when migrating a Java codebase incrementally or calling mature Java libraries from Kotlin.
How is Null Safety Java Interop different from Java?
Use safe calls when Java may return null.
How do I practice this topic?
Copy the example program into IntelliJ IDEA or Android Studio, run it, then modify values or add print statements to confirm your understanding.

Related tutorials

Search tutorials