用几句话总结这个问题,这里有一个问题:
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 传递这些类型的引用?