freeCodeCamp/guide/chinese/go/go-variables/index.md

1.3 KiB
Raw Blame History

title localeTitle
Go Variables 去变量

Go中的变量声明

方法1常规变量声明

常规变量声明通过将标识符与类型和初始值绑定来创建一个或多个变量。如果声明的变量没有类型,则该变量将赋予赋值中相应初始化值的类型。如果定义的变量没有初始值,则将变量初始化为零值

以下示例是go中的所有有效变量声明 “走吧 var x int = 1 var y int var z = 0 var ab float32 = -1-2

## Method 2: Short Variable Declarations 
 
 Shorthand variable declarations create variables with only an identifier and an initial value. The `var` keyword and types are not needed to declare a variable using shorthand syntax: 

走 x= 1 texterr= ioutil.ReadAll读者 ```

简短变量声明可能仅出现在函数内部。在某些上下文中,例如if forswitch语句的初始化程序,它们可用于声明本地临时变量。

更多信息: