📜  Kotlin扩展功能

📅  最后修改于: 2021-01-05 08:05:02             🧑  作者: Mango

Kotlin扩展功能

Kotlin扩展函数提供了一种向类“添加”方法的功能,而无需继承类或使用任何类型的设计模式。创建的扩展函数在该类中用作常规函数。

扩展函数使用带有方法名称的前缀接收器类型声明。

fun .()

在上面的声明中,是接收器类型,而()是扩展函数。

扩展函数声明及其使用示例

通常,我们从类外部调用所有已在类内部定义的方法。在下面的示例中,Student类声明一个方法为Passed() ,该方法通过创建Student类的对象Student从main()函数调用。

假设我们要调用未在类中定义的Student类的方法(例如isExcellent() )。在这种情况下,我们在Student类之外创建一个函数(isExcellent())作为Student.isExcellent(),然后从main()函数调用它。声明的Student.isExcellent()函数称为扩展函数,其中Student类称为接收器类型

class Student{
    fun isPassed(mark: Int): Boolean{
        return mark>40
    }
}
fun Student.isExcellent(mark: Int): Boolean{
    return mark > 90
}
fun main(args: Array){
val student = Student()
val passingStatus = student.isPassed(55)
println("student passing status is $passingStatus")

val excellentStatus = student.isExcellent(95)
println("student excellent status is $excellentStatus")
}

输出:

student passing status is true
student excellent status is true

上面的示例仅演示了如何声明扩展函数。

Kotlin扩展函数示例

让我们看看扩展函数的真实示例。在此示例中,我们使用swap()方法交换MutableList <>的元素。但是,MutableList <>类在内部不提供swap()方法来交换其元素。为这样做,我们创建MutableList <扩展函数>与交换()函数。

列表对象使用list.swap(0,2)函数调用扩展函数(MutableList .swap(index1:Int,index2:Int):MutableList )。 swap(0,2)函数在MutableList .swap(index1:Int,index2:Int):MutableList )sxtension函数传递列表的索引值。

fun MutableList.swap(index1: Int, index2: Int):MutableList {
val tmp = this[index1] // 'this' represents to the list
    this[index1] = this[index2]
    this[index2] = tmp
    return this
}
fun main(args: Array) {
val list = mutableListOf(5,10,15)
println("before swapping the list :$list")
val result = list.swap(0, 2)
println("after swapping the list :$result")
}

输出:

before swapping the list :[5, 10, 15]
after swapping the list :[15, 10, 5]

扩展功能为可空接收器

扩展函数可以定义为可为空的接收器类型。即使对象值为null,也可以通过对象变量调用此可为空的扩展函数。使用此== null在体内检查对象的可空性。

让我们使用扩展函数作为可为空的接收器重写以上程序。

funMutableList?.swap(index1: Int, index2: Int): Any {
if (this == null) return "null"
else  {
val tmp = this[index1] // 'this' represents to the list
this[index1] = this[index2]
this[index2] = tmp
return this
    }
}
fun main(args: Array) {
val list = mutableListOf(5,10,15)
println("before swapping the list :$list")
val result = list.swap(0, 2)
println("after swapping the list :$result")
}

输出:

before swapping the list :[5, 10, 15]
after swapping the list :[15, 10, 5]

伴侣对象扩展

随行对象是在类内部声明并标记为同伴关键字的对象。伴随对象用于直接使用类名调用类的成员函数(如java中的static)。

包含伴侣对象的类也可以定义为伴侣对象的扩展函数和属性。

伴随对象的示例

在此示例中,我们调用在伴侣对象内部声明的create()函数,使用类名称(MyClass)作为限定符。

class MyClass {
    companion object {
        fun create():String{
            return "calls create method of companion object"
        }
    }
}
fun main(args: Array){
val instance = MyClass.create()
}

输出:

calls create method of companion object

随播对象扩展示例

让我们看一个伴随对象扩展的例子。还使用类名作为限定符来调用伴随对象扩展。

class MyClass {
    companion object {
        fun create(): String {
            return "calling create method of companion object"
        }
    }
}
fun MyClass.Companion.helloWorld() {
println("executing extension of companion object")
}
fun main(args: Array) {
MyClass.helloWorld() //extension function declared upon the companion object
}

输出:

executing extension of companion object