Files
kotlin-for-java-developers/src/Constants.kt

8 lines
262 B
Kotlin
Raw Normal View History

// 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