4
Comments
  • 0
    They are just static functions/variables when converted to java, Right? I read only a few stuff about kotlin
  • 1
    @StopWastingTime Not quite - it's a singleton object (hence the additional overhead and why it's not very good IMO). You can use the JvmStatic annotation to tell the Kotlin compiler to use traditional static properties and methods if you want.
Add Comment