gpt4 book ai didi

android - Swift 到 Kotlin : Struct to Data Class Example

转载 作者:行者123 更新时间:2023-11-30 11:12:42 24 4
gpt4 key购买 nike

我已经转换了以下 Swift 代码:

struct FooModel: Decodable {
public let id: String
public let bars: [[BarModel]]
}

这段 Kotlin 代码:

data class FooModel (val id: String, val bars: List<List<BarModel>>)

我遇到的问题是,对于 Kotlin 代码(通过 gson),我的 id 为 null。 Kotlin 转换中的其他所有内容都工作正常,整个 JSON 正在填充所有数据类,除了这一小块(id 变量)。

我怀疑我在这里的转换是原因,有什么想法吗?

最佳答案

如果id应该可以为空,请像这样:

data class FooModel (
val id: String?,
val bars: List<List<BarModel>>
)

问号使该属性可以为空。

关于android - Swift 到 Kotlin : Struct to Data Class Example,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52023735/

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