0

用几句话总结这个问题,这里有一个问题:

also(strings::add)不起作用,它说Type inference failed

fun test() = "Test String"

val strings = mutableListOf<String>()
// Type inference failed: inline fun <T> T.also(block: (T) -> Unit): T cannot be applied to receiver: String arguments: (<unknown>)
// None of the following functions can be called with the arguments supplied: public abstract fun add(index: Int, element: String): Unit defined in kotlin.collections.MutableList public abstract fun add(element: String): Boolean defined in kotlin.collections.MutableList
test().also(strings::add).let { /* Use the string later */ }

虽然在同let一个地方做同样的事情:

val strings = mutableListOf<String>()
test().let(strings::add).let { println(it) }  // prints true, no compile errors.

是最小的可重现代码。

我想稍后使用字符串,所以不想在这里使用 let。我该怎么办?如果我尝试使用 apply 可能会发生相同的编译错误,因为也和 apply 具有相同的回调签名KFunction1<T, T>。应该如何使用also/apply 传递这些类型的引用?

4

1 回答 1

1

override fun add(element: E): Boolean如您所见,该函数返回Boolean,但apply接受block: T.() -> Unit,即它只接受接收单个参数且不返回值的函数。

于 2020-05-20T14:36:36.547 回答