swift swift_optional2.swift

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift swift_optional2.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!)"  // fatal error: unexpectedly found nil while unwrapping an Optional value
print(message)

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

swift swift_optional3.swift

swift swift_optional2.swift

swift swift_optional1.swift

异常与中断2--und异常,swi异常,按键中断,定时器中断

[YOLO专题-23]:YOLO V5 - ultralytics代码解析-网络子结构详解

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