如何在Kotlin中导入类型扩展功能

时间:2018-07-06 11:56:10

标签: kotlin kotlin-extension

我为Any类型编写了一个扩展函数,该函数将按名称检索对象属性值。我希望能够在项目的任何地方使用它。这是我的扩展功能:

package com.example.core.utils.validation

import java.util.NoSuchElementException
import kotlin.reflect.full.memberProperties

fun Any.getFieldValue(fieldName: String): Any? {
    try {
        return this.javaClass.kotlin.memberProperties.first { it.name == fieldName }.get(this)
    } catch (e: NoSuchElementException) {
        throw NoSuchFieldException(fieldName)
    }
}

现在我要像这样使用它

package com.example.core

import com.example.core.utils.validation.*

class App {
    val obj = object {
        val field = "value"
    }

    val fieldValue = obj.getFieldValue("field")
}

但是有未解决的参考错误

我应该如何将扩展功能设置为全局功能并将其导入任何地方?

1 个答案:

答案 0 :(得分:3)

您应该在第二个代码段中使用 import 语句而不是第二个 package 声明。

请参阅文档:https://kotlinlang.org/docs/reference/extensions.html#scope-of-extensions

实际上我不确定对Any类型进行扩展是否有效。我认为在这种情况下,您需要在Any类型的对象上调用它。