super keyword

suggest change
interface MyInterface {
    fun funcOne() {
        //optional body
        print("Function with default implementation")
    }
}

If the method in the interface has its own default implementation, we can use super keyword to access it.

super.funcOne()

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents