Kotlin - 接口



本章我们将学习 Kotlin 中的接口。在 Kotlin 中,接口的工作方式与 Java 8 完全相同,这意味着它们既可以包含方法实现,也可以包含抽象方法声明。类可以实现接口以使用其定义的功能。我们在第 6 章 - “匿名内部类”一节中已经介绍了一个接口示例。本章我们将对此进行更深入的学习。“interface”关键字用于在 Kotlin 中定义接口,如下面的代码片段所示。

interface ExampleInterface {
   var myVar: String     // abstract property
   fun absMethod()       // abstract method
   fun sayHello() = "Hello there" // method with default implementation
}

在上面的示例中,我们创建了一个名为“ExampleInterface”的接口,其中包含一些抽象属性和方法。请注意名为“sayHello()”的函数,它是一个已实现的方法。

在下面的示例中,我们将把上面的接口实现到一个类中。

在线演示
interface ExampleInterface  {
   var myVar: Int            // abstract property
   fun absMethod():String    // abstract method
   
   fun hello() {
      println("Hello there, Welcome to TutorialsPoint.Com!")
   }
}
class InterfaceImp : ExampleInterface {
   override var myVar: Int = 25
   override fun absMethod() = "Happy Learning "
}
fun main(args: Array<String>) {
   val obj = InterfaceImp()
   println("My Variable Value is = ${obj.myVar}")
   print("Calling hello(): ")
   obj.hello()
   
   print("Message from the Website-- ")
   println(obj.absMethod())
}

上面的代码将在浏览器中产生以下输出。

My Variable Value is = 25
Calling hello(): Hello there, Welcome to TutorialsPoint.Com!
Message from the Website-- Happy Learning 

如前所述,Kotlin 不支持多重继承,但是可以通过同时实现多个接口来实现相同的效果。

在下面的示例中,我们将创建两个接口,然后将这两个接口实现到一个类中。

在线演示
interface A {
   fun printMe() {
      println(" method of interface A")
   }
}
interface B  {
   fun printMeToo() {
      println("I am another Method from interface B")
   }
}

// implements two interfaces A and B
class multipleInterfaceExample: A, B

fun main(args: Array<String>) {
   val obj = multipleInterfaceExample()
   obj.printMe()
   obj.printMeToo()
}

在上面的示例中,我们创建了两个示例接口 A 和 B,并在名为“multipleInterfaceExample”的类中实现了前面声明的两个接口。上面的代码将在浏览器中产生以下输出。

method of interface A
I am another Method from interface B
广告