Files
kotlin-for-java-developers/src/Constants.kt
2025-08-01 10:03:04 +02:00

8 lines
262 B
Kotlin

// Compile time constant. Is inlined by the compiler. Only works for primitives and Strings. static method in Java
const val MAGIC_NUMBER = 42
// Is converted into a static final in Java. Supports all types
@JvmField
val JAVA_CONSTANT = MyClass()
class MyClass