Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why there are two ways of declaring variables in Go, what's the difference and which to use?

Tags:

variables

var

go

According to the Go reference there are two ways of declaring a variable

Variable_declarations (in the format of var count = 0 or var count int)
and
Short_variable_declarations (in the format of count := 0)

I found it's very confusing to decide which one to use.

The differences I know (till now) are that:

  • I can only using a count := 0 format when in the scope of a function.
  • count := 0 can be redeclared in a multi-variable short declaration.

But they do behave the same as far as I know. And in the reference it also says:

It (the count:=0way) is shorthand for a regular variable declaration with initializer expressions but no types

My confusions are:

  • If one is just the shorthand way of the other, why do they behave differently?
  • In what concern does the author of Go make two ways of declaring a variable (why are they not merged into one way)? Just to confuse us?
  • Is there any other aspect that I should keep my eyes open on when using them, in case I fall into a pit?
like image 852
armnotstrong Avatar asked Jan 13 '15 09:01

armnotstrong


People also ask

What are the two ways of declaring a variable?

Basically we can declare variables in three different ways by using var, let and const keyword. Each keyword is used in some specific conditions. var: This keyword is used to declare variable globally. If you used this keyword to declare variable then the variable can accessible globally and changeable also.

How do you declare a variable in Go?

In Go language variables are created in two different ways: Using var keyword: In Go language, variables are created using var keyword of a particular type, connected with name and provide its initial value. Important Points: In the above syntax, either type or = expression can be omitted, but not both.

What is the difference between and := IN Go?

The subtle difference between = and := is when = used in variable declarations. the above declaration creates a variable of a particular type, attaches a name to it, and sets its initial value. Either the type or the = expression can be omitted, but not both. Besides, := may appear only inside functions.

How do you declare multiple variables in Go?

Multiple variables can be declared using a single statement. var name1, name2 type = initialvalue1, initialvalue2 is the syntax for multiple variable declaration. The type can be removed if the variables have an initial value.


1 Answers

The Variable declarations make it clear that variables are declared. The var keyword is required, it is short and expresses what is done (at the file level everything excluding comments has to start with a keyword, e.g. package, import, const, type, var, func). Like any other block, variable declarations can be grouped like this:

var (     count int     sum   float64 ) 

You can't do that with Short variable declarations. Also you can use Variable declarations without specifying the initial value in which case each variable will have the zero value of its type. The Short variable declaration does not allow this, you have to specify the initial value.

One of Go's guiding design principle was to make the syntax clean. Many statements require or it is handy that they allow declaring local variables which will be only available in the body of the statement such as for, if, switch etc. To make the syntax cleaner and shorter, Short variable declaration is justified in these cases and it is unambigous what they do.

for idx, value := range array {     // Do something with index and value }  if num := runtime.NumCPU(); num > 1 {     fmt.Println("Multicore CPU, cores:", num) } 

Another difference: Redeclaration

Quoting from the Language specification:

Unlike regular variable declarations, a short variable declaration may redeclare variables provided they were originally declared earlier in the same block with the same type, and at least one of the non-blank variables is new. As a consequence, redeclaration can only appear in a multi-variable short declaration. Redeclaration does not introduce a new variable; it just assigns a new value to the original.

This one is also handy. Suppose you want to do proper error handling, you can reuse an err variable because most likely you only need it to check if there were any errors during the last function call:

var name = "myfile.txt"  fi, err := os.Stat(name) // fi and err both first declared if err != nil {     log.Fatal(err) } fmt.Println(name, fi.Size(), "bytes")  data, err := ioutil.ReadFile(name) // data is new but err already exists                                    // so just a new value is assigned to err if err != nil {     log.Fatal(err) }  // Do something with data 
like image 191
icza Avatar answered Sep 24 '22 12:09

icza