swift swift_optional1.swift

Posted

tags:

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


func getPrice(name: String) -> Float? {
    if (name == "item1") {
        return 10.0
    } else if (name == "item2") {
        return 20.0
    }
    return nil
}


var price:Float? = getPrice(name: "item")
let text = "Price is - "
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_optional1.swift的主要内容,如果未能解决你的问题,请参考以下文章

swift swift_optional3.swift

swift swift_optional2.swift

swift swift_optional1.swift

使用蒸汽时 Timer.scheduledTimer 不可用?

Linux软中断与系统调用

getopt 总是返回 1