gpt4 book ai didi

generics - Kotlin无法通过方法引用推断Function的类型

转载 作者:行者123 更新时间:2023-12-02 13:34:53 24 4
gpt4 key购买 nike

为什么在下面的示例中,使用mapTwo Kotlin无法推断a的类型?

fun <U> mapOne(f: (Int) -> U): U = TODO()
fun <U> mapTwo(f: Function<Int, U>): U = TODO()

fun <T> mapper(a: T): List<T> = TODO()

fun main() {
mapOne(::mapper)
mapTwo(::mapper) //won 't compile
}

最佳答案

类型推断不是编译错误的原因。 mapTwo<List<Int>>(::mapper)也不会编译,因为::mapper的类型为(T) -> List<T>(KFunction1<T, List<T>>),无法将其分配给Function<Int, U>

关于generics - Kotlin无法通过方法引用推断Function的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58616712/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com