Home >Backend Development >Golang >golang delete map element

golang delete map element

WBOY
WBOYOriginal
2023-05-13 09:15:071564browse

With golang's widespread application in the Internet industry, more and more developers are using it to build high-performance applications. Among them, map is one of the important types in golang. It provides a method to quickly find and store key-value pairs. In practical applications, we may often need to delete an element from the map. This article will introduce several methods to delete map elements in golang.

1. Use the delete keyword

Golang provides the built-in function delete to delete elements in the map. The syntax is as follows:

delete(map, key)

Among them, map is the map object of the element to be deleted, and key is the key of the element to be deleted. The following is a simple example that demonstrates how to use the delete keyword to delete elements:

package main

import "fmt"

func main() {
    m := map[string]int{
        "a": 1,
        "b": 2,
        "c": 3,
    }
    delete(m, "a")
    fmt.Println(m)
}

The output result is:

map[b:2 c:3]

As can be seen from the above example, using delete can quickly delete the map Elements. But it should be noted that if the specified key does not exist in the map, delete will not perform any operation.

2. Use range traversal to delete elements

In some cases, we may need to traverse the map and delete elements that meet the conditions. In this case, using delete directly is not feasible because modifying the map while traversing the map will cause an error. At this time, you can use range to traverse the map and mark the elements to be deleted, and finally traverse the map again to delete the marked elements. The following is an example that demonstrates how to use range traversal to delete elements:

package main

import "fmt"

func main() {
    m := map[string]int{
        "a": 1,
        "b": 2,
        "c": 3,
    }
    deleteKeys := make([]string, 0)
    for k, v := range m {
        if v > 2 {
            deleteKeys = append(deleteKeys, k)
        }
    }
    for _, k := range deleteKeys {
        delete(m, k)
    }
    fmt.Println(m)
}

The output result is:

map[a:1 b:2]

In the above example, we first use range to traverse the map and save the keys that meet the conditions in a slice. Then use range again to traverse the slice and delete the elements that need to be deleted in sequence. It should be noted that another slice is used to store the key to be deleted, and it cannot be deleted directly when traversing the map, because modifying the map during traversal will cause an error.

3. Use sync.Map to delete elements synchronously

In high-concurrency applications, we may need to use mapping with concurrent read and write functions, and golang’s sync package provides one Thread-safe mapping type sync.Map. Using sync.Map to delete elements is relatively simple, and there is no need to worry about read and write competition issues during concurrent writes. Here is an example that demonstrates how to use sync.Map to delete elements:

package main

import (
    "fmt"
    "sync"
)

func main() {
    m := &sync.Map{}
    m.Store("a", 1)
    m.Store("b", 2)
    m.Store("c", 3)
    m.Range(func(k, v interface{}) bool {
        if k == "b" {
            m.Delete(k)
        }
        return true
    })
    m.Range(func(k, v interface{}) bool {
        fmt.Printf("%s:%v
", k, v)
        return true
    })
}

The output result is:

a:1
c:3

In the above example, we first create a sync.Map object and add Several key-value pairs are added to it. Then use the Range method to traverse the map and delete elements that meet the conditions. It should be noted that when deleting elements, you need to use the Delete method instead of the delete keyword.

4. Use new assignment of map

In addition to the above methods, another common way to delete map elements is to use new assignment of map. The idea of ​​this method is to create a new map object and assign the elements that need to be retained to the new map object. The following is an example that demonstrates how to delete elements using the new assignment of map:

package main

import "fmt"

func main() {
    m := map[string]int{
        "a": 1,
        "b": 2,
        "c": 3,
    }
    newM := make(map[string]int)
    for k, v := range m {
        if k != "a" {
            newM[k] = v
        }
    }
    fmt.Println(newM)
}

The output result is:

map[b:2 c:3]

In the above example, we first create a new empty map object newM, Then traverse the original map object m and assign the elements that do not need to be deleted to newM. It should be noted that this method is more effective when there are fewer elements in the map, but it will cause performance degradation when the number of elements in the map is large. Therefore, it is recommended to use the delete or Range method when deleting elements in the map to obtain better performance.

Conclusion

In golang, there are many ways to delete map elements, among which delete is the simplest and most commonly used method; the Range method is suitable for scenarios where elements that meet the conditions need to be deleted. ; The Delete method of sync.Map is suitable for high-concurrency applications; using the new assignment of map can delete elements in the map, but there will be a certain overhead in performance. Depending on the specific scenario, we can choose the method that suits us best to improve the performance and readability of the application.

The above is the detailed content of golang delete map element. 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