标签: kotlin
我必须对Kotlin中的接口做一个介绍。我的主题之一是“创建对象的界面”您如何做到的?
答案 0 :(得分:0)
使用object表达式
object
val instanceOfYourInterface = object : YourInterfaceHere { override fun methodOfYourInterfaceHere() { /*...*/ } }
在docs中阅读更多内容