if convertednumber != nil { println("convertednumber has an integer value of \(convertednumber!).")}// prints "convertednumber has an integer value of 123."
有了这个解释
Once you’re sure that the optional does contain a value,you can access its underlying value by adding an exclamation mark (!) to the end of the optional’s name. The exclamation mark effectively says,“I kNow that this optional definitely has a value; please use it.” This is kNown as forced unwrapPing of the optional’s value:
好的,明白了,但它的用处是什么?如果我没有强行拆包,那就不一样了:
if convertednumber != nil { println("convertednumber has an integer value of \(convertednumber).")}// prints "convertednumber has an integer value of 123."
感谢启发我:)
Wouldn’t be the same if I dIDn’t forced the unwrapPing
不可以.可选是另一种类型.如果您实际上在没有展开的情况下运行上面的代码(在 *** 场上这是微不足道的),您可以立即看到差异.
可选打印为可选(123),打开打印为123.您无法将可选项传递给需要特定类型的内容而无需先将其打开.
理解Optionals是完全不同的类型,而不是特定类型的特殊类型(例如,没有“可选的Int”,有一个包含Int的Optional)是理解这一点的关键.如果你对更长的解释感兴趣,我已经写了here.
总结以上是内存溢出为你收集整理的swift – 强制展开的目的全部内容,希望文章能够帮你解决swift – 强制展开的目的所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)