在Swift中转换可选项:as?类型或作为!类型?

在Swift中转换可选项:as?类型或作为!类型?,第1张

概述在Swift中给出以下内容: var optionalString: String?let dict = NSDictionary() 以下两个语句之间的实际区别是什么: optionalString = dict.objectForKey("SomeKey") as? String vs optionalString = dict.objectForKey("SomeKey") as! Str 在Swift中给出以下内容:
var optionalString: String?let dict = NSDictionary()

以下两个语句之间的实际区别是什么:

optionalString = dict.objectForKey("SomeKey") as? String

vs

optionalString = dict.objectForKey("SomeKey") as! String?
实际的区别是:
var optionalString = dict.objectForKey("SomeKey") as? String

optionalString将是String类型的变量。如果底层类型是除了String之外的其他类型,这将无害地只是分配nil到可选。

var optionalString = dict.objectForKey("SomeKey") as! String?

这说,我知道这是一个字符串。这也会导致optionalString类型为String ?,但是如果底层类型是别的,它会崩溃。

然后使用第一个样式,如果允许安全地打开可选:

if let string = dict.objectForKey("SomeKey") as? String {    // If I get here,I kNow that "SomeKey" is a valID key in the dictionary,I correctly    // IDentifIEd the type as String,and the value is Now unwrapped and ready to use.  In    // this case "string" has the type "String".    println(string)}
总结

以上是内存溢出为你收集整理的在Swift中转换选项:as?类型或作为!类型?全部内容,希望文章能够帮你解决在Swift中转换可选项:as?类型或作为!类型?所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存