Go中变量的作用域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go中变量的作用域相关的知识,希望对你有一定的参考价值。


package main

import (
    "fmt"
)

//不同作用域同名变量
var a int //全局变量的声明
func test01(a float32) {
    fmt.Printf("a type = %T
", a)
}

func main() {
    fmt.Printf("a type = %T
", a)
    var a uint8 //局部变量声明
    {
        var a float64 //局部变量声明
        fmt.Printf("a type = %T
", a)
    }
    fmt.Printf("a type =%T
", a)

    test01(3.14)
    test02()
}

func test02() {
    fmt.Printf("a type = %T
", a)
}
//运行结果如下:
//a type = int
//a type = float64
//a type =uint8
//a type = float32
//a type = int

以上是关于Go中变量的作用域的主要内容,如果未能解决你的问题,请参考以下文章

[日常] Go语言圣经--作用域,基础数据类型,整型

Go中变量的作用域

Go语言变量作用域

Go作用域

3.4 Go语言中变量作用域(Scope)

3.4 Go语言中变量作用域(Scope)