Home >Backend Development >Golang >How Does Go Handle Multiple Variable Declarations?
Multiple Variable Declaration in Go
In Go, it is possible to declare multiple variables at once using the var keyword. This can be useful for initializing multiple variables of the same type with different values.
Example:
var a, b, c string
In this example, the variables a, b, and c are declared as strings. They are not initialized with any values at this point.
To assign values to the variables, you can use the assignment operator =.
a = "foo" fmt.Println(a) // Output: foo
Inline Assignment:
Go also supports inline assignment, which allows you to declare and initialize multiple variables in one line. However, this syntax is not as convenient as in Python.
a, b, c := 80, 80, 80
In this example, the variables a, b, and c are declared as integers and initialized with the value 80.
The above is the detailed content of How Does Go Handle Multiple Variable Declarations?. For more information, please follow other related articles on the PHP Chinese website!