Home > Backend Development > Golang > What are the methods of traversing arrays in go language?

What are the methods of traversing arrays in go language?

青灯夜游
Release: 2023-01-17 11:39:50
Original
6057 people have browsed it

There are two ways to traverse an array: 1. Use a for loop statement to traverse the array, the syntax is "for i :=0;i

What are the methods of traversing arrays in go language?

The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.

There are two ways to traverse arrays in Go language, namely: through for loop and through for range loop.

for loop traverses the array

The curly braces at the beginning of the loop body of the for loop in Go language must be written on the same line as for. This is not allowed. Separate line breaks, similar to curly braces in if statements.

Syntax

for i := 0; i < len(arr); i++ {
    //arr[i]
}
Copy after login

Instructions:

We use the len function to get the number of array elements, and then get each element through a for loop and index. The value of an array element.

Example: for loop array traversal

We can traverse the array in the form of for loop plus index

package main
import (
	"fmt"
)
func main() {
	//我们可以通过 for循环加索引的形式遍历数组
	var arr = [10]int{1,2,3,4,5,6,7,8,9,10}
	for i := 0; i < len(arr); i++ {
		fmt.Println(arr[i])
	}
}
Copy after login

What are the methods of traversing arrays in go language?

for range loop traverses the array

The key-value for loop of Go language uses the syntax form of for range, which can be used to traverse the array.

Syntax

for index, value := range arr{
}
Copy after login

Explanation:

Traverse the array elements in the form of for range, index is the index of the array, value is the index of the array The value of the array corresponding to index. If we don't need the index or value, we can ignore it in the form of _.

Example: for range loop array traversal

package main
import (
	"fmt"
)
func main() {
	//我们可以通过 for range循环的形式遍历数组
	var arr = [10]int{1,2,3,4,5,6,7,8,9,10}
	for index, value := range arr{
		fmt.Println("Index =", index, "Value =", value)
	}
}
Copy after login

What are the methods of traversing arrays in go language?

##[Related recommendations:

Go video tutorial,Programming Teaching

The above is the detailed content of What are the methods of traversing arrays in go language?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template