英文:
Kotlin: 'public' property exposes its 'local' type argument <no name provided>
问题
interface A {
fun f(): String
}
val B = { attr: String ->
object : A {
override fun f() = attr
}
}
在定义 B
处我遇到了以下错误:
'public' 属性暴露了其 'local' 类型参数 <no name provided>
这个错误的原因是什么?
英文:
interface A {
fun f() : String
}
val B = { attr : String ->
object : A {
override fun f() = attr
}
}
I'm getting this error at the definition of B
:
'public' property exposes its 'local' type argument <no name provided>
What is the cause of this error?
答案1
得分: 2
你正在返回一个匿名的单例对象,而Kotlin无法确定未提供名称的类型。您可以明确指定 B
的类型以解决此问题。
val B: (String) -> A = { attr: String ->
object : A {
override fun f() = attr
}
}
英文:
You are returning an anonymous singleton object, and kotlin is not able to figure out the type for which no name is provided. You can specify the type of B
explicitly to fix this issue
val B: (String) -> A = { attr: String ->
object : A {
override fun f() = attr
}
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论