我想将SwiftyJSON的所有switch语句转换为if-else条件,因为switch语句会导致大量内存泄漏。
我几乎已经转换了所有的switch语句,但我坚持这个:
fileprivate subscript(sub sub: JSONSubscriptType) -> JSON {
...
switch sub.jsonKey {
case .index(let index): return self[index: index]
case .key(let key): return self[key: key]
}
...
}
public enum JSONKey {
case index(Int)
case key(String)
}
有人能帮助我吗?
答案 0 :(得分:4)
switch sub.jsonKey {
case .index(let index): return self[index: index]
case .key(let key): return self[key: key]
}
将是
if case .index(let index) = sub.jsonKey {
return self[index: index]
} else if case .key(let key) = sub.jsonKey {
return self[key: key]
}
或抽象:
switch value {
case .a(let x): doFoo(x)
case .b(let y): doBar(y)
}
成为
if case .a(let x) = value {
doFoo(x)
} else if case .b(let y) = value {
doBar(y)
}