惯用地传递可为空类型的方法引用

时间:2019-08-20 12:10:40

标签: kotlin

我有一个界面:

interface A{
 fun test(foo:Int,bar:Int)
}

我对A的实现有一个可空引用

val aImpl:A? = .....

然后我有一个高阶函数,它接收一个与test相同的可为空的签名函数

...

fun higherOrder(f:((a:Int,B:Int)-> Unit)?){ ... }

如何将测试函数的引用传递给HigherOrder?例如,这不起作用:

higherOrder(aImpl::test)  // aImpl is nullable
higherOrder(aImpl?::test) // I'd expect reasonably this to work, but syntax is invalid

这有效,但感觉有点破旧而且很长。而且我正试图避免额外的lambda。

higherOrder(aImpl?.let{it::test}) 

是否有更惯用的方法?

1 个答案:

答案 0 :(得分:0)

如评论中所述,有几种方法可以实现这一目的

interface A{
 fun test(foo:Int,bar:Int)
}

val aImpl:A? = .....

fun higherOrder(f:((a:Int,B:Int)-> Unit)?){ ... }


// Not very Kotlin
if (aImpl != null) higherOrder(aImpl::test)

// Kotlin, but weird
higherOrder( aImpl?.let { it::test } )

// Very kotlin, maybe a bit more overhead in understanding
higherOrder { a, b -> aImpl?.test(a, b) }