Skip to content

Instantly share code, notes, and snippets.

@ashwin-sp
Created March 31, 2018 09:32
Show Gist options
  • Save ashwin-sp/0cca8b0c299a7f52e0e67f4d2a7f09eb to your computer and use it in GitHub Desktop.
Save ashwin-sp/0cca8b0c299a7f52e0e67f4d2a7f09eb to your computer and use it in GitHub Desktop.
Kotlin Object class reference from Java code
object Test {
internal fun demoMethod() {
println("demoMethod for singleton")
}
}
/** Equivalent Java Reference
Test.INSTANCE.demoMethod();
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment