gpt4 book ai didi

java - Kotlin: 'public' 属性公开其 'local' 类型参数 <未提供名称>

转载 作者:行者123 更新时间:2023-12-01 14:31:23 25 4
gpt4 key购买 nike

interface A {
fun f() : String
}

val B = { attr : String ->
object : A {
override fun f() = attr
}
}

我在 B 的定义中遇到了这个错误:

'public' property exposes its 'local' type argument <no name provided>

这个错误的原因是什么?

最佳答案

您正在返回一个匿名单例对象,并且 kotlin 无法找出未提供名称的类型。您可以明确指定 B 的类型来解决此问题

val B: (String) -> A = { attr: String ->
object : A {
override fun f() = attr
}
}

关于java - Kotlin: 'public' 属性公开其 'local' 类型参数 <未提供名称>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63771490/

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