使用getDeclaredMethod,并将函数用作parameterType

时间:2018-09-10 06:44:33

标签: java reflection kotlin

我有一个私有方法,其标题为:

private fun setNumericListener(editText: EditText, onValueChanged:(newValue: Double?) -> Unit)

我以这种方式调用此方法:setNumericListener(amountEditText, this::onAmountChanged)

我想使用Class中的getDeclaredMethod https://docs.oracle.com/javase/7/docs/api/java/lang/Class.html#getDeclaredMethod(java.lang.String,%20java.lang.Class...)获取对我的私有方法setNumericListener的引用。 getDeclaredMethod接收参数类型数组Class<?>... parameterTypes,但是当我的私有方法将方法引用作为参数时,我不知道如何设置参数类型数组。

谢谢

1 个答案:

答案 0 :(得分:3)

该函数引用被解析为kotlin.jvm.functions.Function1类型。

这意味着您可以使用getDeclaredMethod()通过调用以下方法来获取方法引用:

getDeclaredMethod("setNumericListener", EditText::class.java, Function1::class.java)

这是完整的代码段:

fun main(vararg args: String) {
    val method = Test::class.java.getDeclaredMethod("setNumericListener",
            EditText::class.java, Function1::class.java)

    println(method)
}

// Declarations
class Test {
    private fun setNumericListener(editText: EditText,
            onValueChanged: (d: Double?) -> Unit) {}
}

class EditText {}

哪些印刷品:

private final void Test.setNumericListener(EditText,kotlin.jvm.functions.Function1)