美文网首页
[GO] 02 HelloVariable

[GO] 02 HelloVariable

作者: 棘刺 | 来源:发表于2020-04-06 23:13 被阅读0次
    package main
    
    import "fmt"
    
    func main() {
        // 默认
        var a1 int
        fmt.Printf("默认 a1: %d\n", a1)
    
        // 赋值
        a1 = 1
        fmt.Printf("赋值 a1: %d\n", a1)
    
        // 多声明
        var (
            a int
            b bool
        )
        fmt.Printf("多声明 a,b:%d %t\n", a, b)
    
        // 特殊
        _, c := 100, 101
        fmt.Printf("特殊 _, c:%d\n", c)
    
        // 常量
        const as string = "hello"
        const asd = "hello"
        fmt.Printf("常量 as:%s\n", as)
        fmt.Printf("常量 asd:%s\n", asd)
    
        // itoa
        const asdf = iota // asdf=0
        fmt.Printf("itoa asdf:%s\n", asdf)
    }
    
    
    image.png

    相关文章

      网友评论

          本文标题:[GO] 02 HelloVariable

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