gpt4 book ai didi

kotlin - 没有足够的信息来推断参数 T

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

Context :我正在使用 Spring 使用 kotlin 构建 REST APIProblem :我有一个名为 Response 的 Kotlin 类接受这样的泛型:

class Response<T> {

var data: T? = null
var dataArray: List<T>? = null
var errors: List<String>? = null
get() {
if (field == null) {
this.errors = ArrayList()
}
return field
}
}

当我尝试在我的 API Controllers 之一中实例化时像这样:
val response = Response()
response.setData(someting)

它给了我 Not enough information to infer parameter T .

我怎样才能避免这个错误?

最佳答案

您必须指定什么 T在这种情况下。假设它是一个 String ,你可以这样做:

val response = Response<String>()
response.data = "Something that is a String"

关于kotlin - 没有足够的信息来推断参数 T,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55680936/

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