Go Practices 101
Theme: dark/light
Go Optimizations 101,
Go Details & Tips 101
and Go Generics 101
are all updated for Go 1.24 now.
The most cost-effective way to get them is through this book bundle
in the Leanpub book store.
TapirMD - a powerful, next-generation markup language that simplifies content creation (much more powerful than markdown).
You can experience it online
here.
This article will introduce expressions and statements in Go.
Simply speaking, an expression represents a value and a statement represents an operation. However, in fact, some special expressions may be composed of and represent several values, and some statements may be composed of several sub operations/statements. By context, some statements can be also viewed as expressions.
Simple statements are some special statements. In Go, some portions of all kinds of control flows must be simple statements, and some portions must be expressions. Control flows will be introduced in the next Go 101 article.
This article will not make accurate definitions for expressions and statements. It is hard to achieve this. This article will only list some expression and statement cases. Not all kinds of expressions and statements will be covered in this article, but all kinds of simple statements will be listed.
Most expressions in Go are single-value expressions. Each of them represents one value. Other expressions represent multiple values and they are named multi-value expressions.
In the scope of this document, when an expression is mentioned, we mean it is a single-value expression, unless otherwise specified.
Value literals, variables, and named constants are all single-value expressions, also called elementary expressions.
Operations (without the assignment parts) using the operators introduced in the article
common operators are all single-value expressions.
If a function returns at least one result, then its calls (without the assignment parts) are expressions. In particular, if a function returns more than one results, then its calls belong to multi-value expressions. Calls to functions without results are not expressions.
Methods can be viewed as special functions. So the aforementioned function cases also apply to methods. Methods will be explained in detail in the article
method in Go later.
In fact, later we will learn that custom functions, including methods, are all function values, so they are also (single-value) expressions. We will learn more about
function types and values later.
Channel receive operations (without the assignment parts) are also expressions. Channel operations will be explained in the article
channels in Go later.
Some expressions in Go, including channel receive operations, may have optional results in Go. Such expressions can present as both single-value and multi-value expressions, depending on different contexts. We can learn such expressions in other Go 101 articles later.
There are six kinds of simple statements.
-
short variable declaration forms
-
pure value assignments (not mixing with variable declarations), including x op= y
operations.
-
function/method calls and channel receive operations. As mentioned in the last section, these simple statements can also be used as expressions.
-
channel send operations.
-
nothing (a.k.a., blank statements). We will learn some uses of blank statements in the next article.
-
x++
and x--
.
Again, channel receive and sent operations will be introduced in the article
channels in Go.
Note, x++
and x--
can't be used as expressions. And Go doesn't support the ++x
and --x
syntax forms.
An incomplete non-simple statements list:
-
standard variable declaration forms. Yes, short variable declarations are simple statements, but standard ones are not.
-
named constant declarations.
-
custom type declarations.
-
package import declarations.
-
explicit code blocks. An explicit code block starts with a {
and ends with a }
. A code block may contain many sub-statements.
-
function declarations. A function declaration may contain many sub-statements.
-
control flows and code execution jumps. Please read
the next article for details.
-
return
lines in function declarations.
-
// Some non-simple statements.
import "time"
var a = 123
const B = "Go"
type Choice bool
func f() int {
for a < 10 {
break
}
// This is an explicit code block.
{
// ...
}
return 567
}
// Some simple statements:
c := make(chan bool) // channels will be explained later
a = 789
a += 5
a = f() // here f() is used as an expression
a++
a--
c <- true // a channel send operation
z := <-c // a channel receive operation used as the
// source value in an assignment statement.
// Some expressions:
123
true
B
B + " language"
a - 789
a > 0 // an untyped boolean value
f // a function value of type "func ()"
// The following ones can be used as both
// simple statements and expressions.
f()
<-c // a channel receive operation
The digital versions of this book are available at the following places:
Tapir, the author of Go 101, has been on writing the Go 101 series books
and maintaining the go101.org website since 2016 July.
New contents will be continually added to the book and the website from time to time.
Tapir is also an indie game developer.
You can also support Go 101 by playing
Tapir's games
(made for both Android and iPhone/iPad):
Individual donations via PayPal are also welcome.
Articles in this book:
-
Become Familiar With Go Code