8 lines
262 B
Kotlin
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 |