gpt4 book ai didi

swift - 一般使用关联类型的快速协议(protocol)

转载 作者:行者123 更新时间:2023-11-28 06:41:02 26 4
gpt4 key购买 nike

我有一个关于 Swift 的类建模问题。我有一系列类,每个类都执行相同的任务(在我下面的示例中,解码),但它们是专门的,每个都产生不同类型的对象。

在某些情况下,我希望能够一般性地谈论我的解码器,例如 getGeneralInfo()getDecoderForIdentifier()。在其他情况下,例如我正在执行解码操作,我将直接实例化类或使用 as?

以下代码不起作用,因为当 Decoder 具有关联类型时,您不能将其用作返回类型。

我的解决方案是从协议(protocol)中删除 decode() 并让每个类只实现自己的类。然后我需要在需要的地方直接实例化具体类。这是可行的,但让我很难过。

有什么方法可以让编译器强制执行“所有解码器都应该根据它们的关联类型有一个 decode() 方法”吗?

我曾尝试使用通用父类(super class),但它要求我为 decode() 提供一个方法体,如果您的返回类型不是可选的,这将非常粗糙。

protocol Decoder {
associatedtype Model
func getGeneralInfo() -> GeneralInfo
func decode(sourceData: Data) -> Model
}

// This return type is not allowed because Decoder has an associated type
func getDecoderForIdentifier(id: String) -> Decoder {
if id == "mp3" {
return Mp3Decoder()
}
if id == "wave" {
return WaveDecoder()
}
/* ... */
}

class Mp3Decoder: Decoder {
typealias Model = Mp3Info

func getGeneralInfo() -> GeneralInfo {
let info = GeneralInfo()
/* ... */
return info
}

func decode(sourceData: Data) -> Model {
let result = Mp3Info()
/* ... */
return result
}
}

class WaveDecoder: Decoder {
typealias Model = WaveInfo

/* ... similar to mp3 ... */
}

最佳答案

如果您使 Model 成为协议(protocol),那么您可以返回 Decoder,因为那样它就不需要关联类型。

protocol Model { 
// ...
}

protocol Decoder {
func getGeneralInfo() -> GeneralInfo
func decode(sourceData: Data) -> Model
}

class Mp3Decoder: Decoder {

func getGeneralInfo() -> GeneralInfo {
let info = GeneralInfo()
// ...
return info
}

func decode(sourceData: Data) -> Model {
let result = Mp3Info()
// ...
return result
}

}

func getDecoderForIdentifier(id: String) -> Decoder {
if id == "mp3" {
return Mp3Decoder()
}
// ...
}

关于swift - 一般使用关联类型的快速协议(protocol),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37982715/

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