Swift将字典值作为类型

Swift将字典值作为类型,第1张

概述我正在寻找最好的方法如何将此代码设置为一行: if (dictionary["Amoumt"] is Double) { amount = dictionary["Amount"] as Double} else { amount = NSString(string: dictionary["Amount"] as String).doubleValue} 我有Dictiona 我正在寻找最好的方法如何将此代码设置为一行:

if (dictionary["Amoumt"] is Double) {    amount = dictionary["Amount"] as Double} else {    amount = Nsstring(string: dictionary["Amount"] as String).doubleValue}

我有Dictionary< String,AnyObject>我想解析它的价值.我正在使用上面的代码但它的行太多了.我想把它变成一条线.就像是:

dictionary["Amount"].parseDouble()

使用此方法创建扩展没有问题:

func parseDouble() -> Double {    if (self is Double) {        return self as Double    } else {        return Nsstring(string:(self as String)).doubleValue    }}

但是我应该扩展哪种类型?接下来你能用通用方法帮我吗?所以我可以这样打电话:

dictionary["Amount"].parse(Double)

这是如何做到这一点的好方法还是我应该采取另一种方式?

解决方法 您可以按原样使用AnyObject.尝试:

var dictionary:[String:AnyObject] = [    "foo": 4.21,// NSNumber    "bar": "42.5",// Nsstring    "baz": [1,2,3],// NSArray]let foo = dictionary["foo"]?.doubleValue ?? 0 // -> 4.21let bar = dictionary["bar"]?.doubleValue ?? 0 // -> 42.5let baz = dictionary["baz"]?.doubleValue ?? 0 // -> 0.0

这是有效的,因为NSNumber和Nsstring都具有.doubleValue属性.
另一方面,NSArray没有该属性,在这种情况下它返回nil.

如the document中所述:

You can also call any Objective-C method and access any property without casting to a more specific class type. This includes Objective-C compatible methods marked with the @objc attribute.

总结

以上是内存溢出为你收集整理的Swift将字典值作为类型全部内容,希望文章能够帮你解决Swift将字典值作为类型所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1016709.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存