Home  >  Article  >  Backend Development  >  How to use slices in golang

How to use slices in golang

PHPz
PHPzOriginal
2023-04-27 09:08:491076browse

Golang is a very efficient and easy-to-learn programming language, which has been widely used in actual project development. Slices are a very important data structure in golang, which allow us to operate arrays and slices more conveniently. This article will introduce how to use slices in golang.

1. Define and initialize slices

In golang, slices can be used to dynamically adjust the size of an array. A slice is represented by a pointer to the underlying array, a length, and a capacity. The length of a slice refers to the number of elements it contains, and the capacity refers to the number of elements it can hold. Therefore, we can define and initialize a slice in the following way:

var slice []int             // 通过 var 关键词声明一个空切片
slice1 := make([]int, 5)    // 通过 make 函数创建一个长度为 5 的切片
slice2 := []int{1, 2, 3}    // 直接指定切片中的元素
slice3 := []int{0: 1, 2: 3} // 通过索引初始化切片中的元素

2. Add elements to the slice

Use the append() function to add elements to the slice, which will automatically Slices are expanded (if necessary). An example is as follows:

slice = append(slice, 1) // 在 slice 的末尾添加一个元素
slice = append(slice, 2, 3) // 在 slice 的末尾添加两个元素

It should be noted that if the length of the slice exceeds the capacity when adding elements, the append() function will automatically expand the capacity. When expanding, golang will create a new underlying array and copy the original elements to the new array. Therefore, it is not recommended to add a large number of elements to a slice in multiple loops, as this will lead to frequent expansion operations and affect performance.

3. Delete elements from the slice

In golang, deleting elements in the slice is usually achieved by reassigning values. The following is a common implementation:

slice = append(slice[:i], slice[i+1:]...) // 从切片中删除第 i 个元素

This code will split the original slice into two parts and then merge them together. Among them, slice[:i] means from the beginning of the slice to the i-th element (excluding the i-th element), and slice[i 1:] means from the i-th element to the end of the slice. Of the two slices, one contains all elements that need to be retained, and the other does not contain elements that need to be deleted. Finally, combine them together using the ... operator.

In addition, we can also use the copy() function to delete elements. An example is as follows:

copy(slice[i:], slice[i+1:]) // 从切片中删除第 i 个元素
slice = slice[:len(slice)-1] // 删除切片中的最后一个元素

In the above code, the copy() function will move all the elements after the element that needs to be deleted one position forward in sequence, and finally reduce the length of the slice by one to reach the length of the deleted element. Purpose.

4. Copying and intercepting slices

Golang provides two built-in functions to copy and intercept slices: copy() and append(). Below we introduce the usage of these two functions respectively:

  1. copy() function
var slice1 []int // 定义一个空切片
slice2 := make([]int, 5) // 创建一个长度为 5 的切片
copy(slice1, slice2) // 将 slice2 复制到 slice1 中

It should be noted that the copy() function will only copy the two slices Same elements. If the length of the source slice is greater than the length of the target slice, only the elements that can be accommodated in the target slice will be copied, and the excess elements will be truncated. If the length of the destination slice is greater than the length of the source slice, the excess elements in the destination slice are set to their default values.

  1. append() function
var slice1 []int // 定义一个空切片
slice2 := []int{1, 2, 3} // 创建一个切片并初始化
slice1 = append(slice1, slice2...) // 将 slice2 追加到 slice1 中

It should be noted that when using the append() function, if you append a slice to another slice, you need to use ... operator to expand it. In this way, the source slice will be expanded into the target slice, rather than the source slice being appended to the target slice as a whole.

5. Slice traversal

You can use the for loop in golang to traverse the elements in the slice. An example is as follows:

for i, val := range slice {
    fmt.Printf("Index: %d, Value: %d\n", i, val)
}

In the above code, a range form of for loop is used to iterate over the elements in the slice. Among them, i represents the index of the element, and val represents the value of the element. As you can see, using range allows us to traverse the elements in the slice more conveniently, which is also the recommended traversal method in golang.

Summary:

This article introduces the definition and initialization of slices in golang, adding elements to slices, deleting elements from slices, copying and intercepting slices, and traversing slices. Slices are a common data structure that can greatly simplify array operations. Therefore, it is very important for Golang developers to master the use of slices.

The above is the detailed content of How to use slices in golang. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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