swift swift_optional3.swift

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift swift_optional3.swift相关的知识,希望对你有一定的参考价值。


var price:Float? = getPrice(name: "item")
let text = "Price is - "

if price != nil {
    let message = text + "\(price!)"  // compile-time error: error: value of optional type 'String?' not unwrapped; did you mean to use '!' or '?'?
    print(message)
}

以上是关于swift swift_optional3.swift的主要内容,如果未能解决你的问题,请参考以下文章

swift swift_optional3.swift

swift swift_optional2.swift

swift swift_optional1.swift

编程 输入一平面坐标点(x,y),判断并输出该坐标点位于哪个象限?c语言

swift [Swift Notes]在学习Swift #Swift的同时收集笔记

Swift 反射