gpt4 book ai didi

swift - 使类可编码

转载 作者:可可西里 更新时间:2023-11-01 01:48:33 26 4
gpt4 key购买 nike

我有一个协议(protocol),即 Codable 和一个类,即 Codable:

public protocol SourceListItem: AnyObject, Codable
{
var name: String { get set }
var children: [SourceListItem] { get set }
}

final public class SourceListHeader: Codable
{
var name: String = "Give me a name!"
var children: [SourceListItem] = [SourceListItem]()
}

但是,编译器给我两个错误:

Type 'SourceListHeader' does not conform to protocol 'Decodable'
Type 'SourceListHeader' does not conform to protocol 'Codable'

这是为什么呢?我无法修复错误,并且我尝试了很多变体...

问题似乎出在协议(protocol)上,因为如果我删除它,一切正常。这就像编译器没有看到该协议(protocol)仅适用于 Codable 类。

最佳答案

你需要一个符合Codable的具体类型,你不能使用一个符合Codable的协议(protocol)。

final public class SourceListHeader<Item: Codable>: Codable {
var name: String = "Give me a name!"
var children = [Item]()
}

关于swift - 使类可编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56758507/

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