DEV Community

Lane Wagner for Boot.dev

Posted on • Originally published at qvault.io on

All the Ways to Write for Loops in Go

#go

loop architecture

The post All the Ways to Write for Loops in Go first appeared on Qvault.

A for loop executes a block of code repeatedly, and in Golang, there are several different ways to write one.

  1. The standard three-component loop
  2. For-range loop
    1. Range over slice
    2. Range over map
    3. Range over channel
    4. Range over string
  3. While loop
  4. Optional components loop
  5. Infinite loop
  6. Break from a loop
  7. Continue (skip to the next iteration) in a loop

#1 The standard three-component loop

Go has fairly standard syntax for the three-component loop you’re probably used to from C, Java, or JavaScript. The big difference is the lack of parentheses surrounding the components.

for i := 0; i < 100; i++ {
    sum += i
}
Enter fullscreen mode Exit fullscreen mode

The three components are the init statement, i := 0, the condition, i < 100, and the post statement, i++. The steps of executing the loop are as follows.

  1. The init statement executes and variables declared there are made available to the scope of the loop’s body.
  2. The condition is computed. If it evaluates to true then the body runs, otherwise the loop is complete.
  3. The post statement runs.
  4. Step 2 is repeated.

#2 For-range loop

More often than not it seems, it’s useful to loop over a collection of items like a map, slice, channel, or string. While you can use a traditional three-component loop, Go makes it easy by using the range keyword.

Range over a slice in Go

fruits := []string{"apple", "banana", "pear"}
for i, fruit := range fruits {
    fmt.Println(i, s)
}
// prints:
// 0 apple
// 1 banana
// 2 pear
Enter fullscreen mode Exit fullscreen mode

Range over a map in Go

ages := map[string]int{
    "lane": 26,
    "preston": 28,
    "rory": 21,
}
for name, age := range ages {
    fmt.Println(name, age)
}
// prints:
// lane 26
// preston 28
// rory 21
Enter fullscreen mode Exit fullscreen mode

Range over a channel in Go

ch := make(chan int)
go func() {
    for i := 0; i < 3; i++ {
        ch <- i
    }
    close(ch)
}()

// loop ends when channel is close
for value := range ch {
    fmt.Println(value)
}
fmt.Println("channel closed")

// prints:
// 0
// 1
// 2
// channel closed
Enter fullscreen mode Exit fullscreen mode

Range over a string in Go

name := "lane"
for i, char := range name {
     // cast the rune to a string for printing 
     fmt.Println(i, string(char))
}

// prints
// 0 l
// 1 a
// 2 n
// 3 e
Enter fullscreen mode Exit fullscreen mode

#3 While loop

By using a single component in the for-loop signature rather than three, we can effectively build a while-loop in Golang. There is no while keyword in Go.

sum := 1
for sum < 10 {
    sum += sum
}
fmt.Println(sum)
Enter fullscreen mode Exit fullscreen mode

#4 Optional components loop

Building on the idea of a flexible for-loop, we can omit the init or post statements of the three-component loop as we please.

i := 0
for ; sum < 1000; i++ {
    sum += i
}

for i := 0; sum < 1000; {
    sum += i
    i++
}
Enter fullscreen mode Exit fullscreen mode

This can be a useful pattern when you want something like a do-while, or an immediate first tick from a ticker.

#5 Infinite loop

Infinite loops are useful within goroutines when you have a worker or process that should continue perpetually.

sum := 0
for {
    sum++ // repeated forever
}
// never reached, loops continues on forever
Enter fullscreen mode Exit fullscreen mode

#6 Break from a loop

Breaking early from a loop can be useful, especially in a forever loop. The break keywords exits the loop immediately.

sum := 0
for {
    sum++
    if sum >= 1000 {
        break
    }
}
fmt.Println(sum)

// prints:
// 1000
Enter fullscreen mode Exit fullscreen mode

#7 Continue (skip to the next iteration) in a loop

It can be useful to skip to the next iteration of a loop early. This can be a good pattern for guard clauses within a loop.

for i := 0; i < 10; i++{
    if i % 2 == 0 {
        continue
    }
    fmt.Println(i, "is odd")
}

// prints
// 1 is odd
// 3 is odd
// 5 is odd
// 7 is odd
// 9 is odd
Enter fullscreen mode Exit fullscreen mode

Thanks for reading, now take a course!

Interested in a high-paying job in tech? Land interviews and pass them with flying colors after taking my hands-on coding courses.

Start coding now

Questions?

Follow and hit me up on Twitter @q_vault if you have any questions or comments. If I’ve made a mistake in the article be sure to let me know so I can get it corrected!

Subscribe to my newsletter for more coding articles delivered straight to your inbox.

Top comments (0)