美文网首页
6 Swift 变量和常量的定义

6 Swift 变量和常量的定义

作者: 为了自由的白菜 | 来源:发表于2023-02-26 10:16 被阅读0次

    声明变量和常量

    image-20230218214453478.png
    • 可以在一行中声明多个变量或常量,用逗号分割
    image-20230218214709078.png
    //也可定义字符串
    let x = 0.0, y = 0.0, z = "123"
    print("x = \(x), y = \(y), z = \(z)")
    

    类型标注

    image-20230218214830307.png

    变量和常量的命名

    image-20230218214954951.png

    打印常量和变量

    image-20230218215054160.png

    相关文章

      网友评论

          本文标题:6 Swift 变量和常量的定义

          本文链接:https://www.haomeiwen.com/subject/pqoqldtx.html