美文网首页
2019-04-08

2019-04-08

作者: 41c48b8df394 | 来源:发表于2019-04-09 00:02 被阅读0次

    今日总结:swift是类型安全的,所谓类型安全是变量和常量指在其初始化就需要指定一种数据类型,如果类型不一致,在编译器会报错

    swift中的十进制用e表示,已10位底,十六进制p exp中是以2为底 2exp
    1.25e2 = 125

    swift中

    二进制:0b 16进制:0x 八进制:0o
    元祖:

    let http404Code = (status:404 , errorMsg:网路错误)
    

    多行字符串以"""开头。"""结尾

    let moreStr = """
    this is
    very
    good
    """
    

    字符组合

    let score = 86
    let str =  "My score is \(score)"
    

    每天进步一点点,成长会多一些

    相关文章

      网友评论

          本文标题:2019-04-08

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