超级关键字
interface MyInterface {
fun funcOne() {
//optional body
print("Function with default implementation")
}
}
如果接口中的方法有自己的默认实现,我们可以使用 super 关键字来访问它。
super.funcOne()
interface MyInterface {
fun funcOne() {
//optional body
print("Function with default implementation")
}
}
如果接口中的方法有自己的默认实现,我们可以使用 super 关键字来访问它。
super.funcOne()