kotlin中的全局扩展功能

时间:2017-06-03 18:57:42

标签: kotlin extension-function

嘿我想在kotlin中创建一个类,它将包含我将在一些地方使用的所有扩展函数,例如:

class DateUtils {
    //in this case I use jodatime
    fun Long.toDateTime() : DateTime = DateTime(this)
    fun String.toDateTime() : DateTime = DateTime.parse(this)
}


class SomeClassWithNoConnectionToDateUtils {
    fun handleDataFromServer(startDate: String) {
        someOtherFunction()
        //startDate knows about toDateTime function in DateUtils 
        startDate.toDateTime().plusDays(4)
    }
}

有没有办法执行此类操作

1 个答案:

答案 0 :(得分:17)

将扩展程序放在DateUtils类中会使它们仅在DateUtils类中使用。

如果您希望扩展是全局的,您可以将它们放在文件的顶层,而不必将它们放在类中。

package com.something.extensions

fun Long.toDateTime() : DateTime = DateTime(this)
fun String.toDateTime() : DateTime = DateTime.parse(this)

然后导入它们以便在其他地方使用它们:

import com.something.extensions.toDateTime

val x = 123456L.toDateTime()