13

嘿,我想在 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)
    }
}

有没有办法执行这样的操作

4

1 回答 1

33

将您的扩展放在一个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()
于 2017-06-03T19:01:50.553 回答