【发布时间】:2021-01-07 19:32:02
【问题描述】:
我正在尝试从A 类型的实例创建B 类型的实例,但是原始类型A 的一些属性是可选的,B 的创建应该会引发错误如果发生这种情况。
我的问题是我不知道 T 类型是否是可选的,如果是,如何解开它。我正在尝试以下方法,但 swift 无法判断类型应该是什么......
下面的例子很遗憾,真实样本有近百个值。
struct A {
let name: String?
let price: Price?
struct Price {
let value: Double?
}
}
struct B {
let name: String
let priceValue: Double
}
extension A {
func convert() throws -> B {
do {
let name: String = try unwrap(\.name) // error: Type of expression is ambiguous without more context
let priceValue: Double = try unwrap(\.price.value) // error: Type of expression is ambiguous without more context
return B(name: name, priceValue: priceValue)
}
}
func unwrap<U, T>(_ path: KeyPath<A, T>) throws -> U {
let value = self[keyPath: path] // value is of type T
if let value = value as? U {
return value
} else {
throw Error.missing("KeyPath '\(path)' is 'nil'")
}
}
enum Error: Swift.Error {
case missing(String?)
}
}
以下我知道会起作用,但我不想在代码中重复这 100 次?
extension A {
func convertWithConditionals() throws -> B {
do {
guard let name = self.name else {
throw Error.missing("KeyPath 'name' is 'nil'")
}
guard let priceValue = self.price?.value else {
throw Error.missing("KeyPath 'price.value' is 'nil'")
}
return B(name: name, priceValue: priceValue)
}
}
}
一定有一些我没有想到的...快速的方式来做这件事。
【问题讨论】:
标签: swift generics optional swift-keypath