美文网首页
2-3 常量与枚举

2-3 常量与枚举

作者: python76 | 来源:发表于2019-10-01 19:57 被阅读0次

    常量的定义:

    const filename = "abc.txt"

    const 数值可作为各种类型使用

    const a, b = 3, 4

    var c int = int(math.Sqrt(a*a + b*b)) 


    使用常量定义枚举类型

    普通枚举类型

    自增值枚举类型


    变量定义要点回顾

    变量类型写在变量名之后

    编译器可推测变量类型

    没有char,只有rune

    原生支持复数类型

    相关文章

      网友评论

          本文标题:2-3 常量与枚举

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