Android Kotlin 接口函数

1 调用接口中的函数

//Person.kt
package com.example.xhello

import android.app.Person

open class Person (val name: String, val age: Int){
}

首先创建一个Study 接口,并在其中定义几个学习行为. 右击com.example.xhello包->NEW->kotlin File/Class 在弹出对话框中输入"Study", 创建 类型选择"Interface"

//Study.kt
package com.example.xhello

interface Study {
    fun readBook()
    fun doHomeWork()
}
//student.kt
import android.app.Person

class Student(name: String, age: Int) : com.example.xhello.Person(name, age), Study {
    override fun readBook() {
        println(name + " is reading.")
    }

    override fun doHomeWork() {
        println(name + " is doing homeWork.")
    }
}

Android Kotlin 接口函数_第1张图片
2 调用接口的默认实现函数

package com.example.xhello

interface Study {
    fun readBook()
    fun doHomeWork(){
        println("do homeWork default implementation. ")
    }
}

Student 类中 删除 doHomeWork() 函数 重新运行 main()

package com.example.xhello

import android.app.Person

class Student(name: String, age: Int) : com.example.xhello.Person(name, age), Study {
    override fun readBook() {
        println(name + " is reading.")
    }
}

Android Kotlin 接口函数_第2张图片

你可能感兴趣的:(Android)