"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Append Values to Arrays Inside Maps in Go?

How to Append Values to Arrays Inside Maps in Go?

Published on 2024-11-21
Browse:656

How to Append Values to Arrays Inside Maps in Go?

Appending Values to Arrays Within a Map in Go

When working with maps in Go, manipulating arrays within those maps can be challenging. This article provides a solution to the issue of appending values to arrays stored inside a map.

To understand the problem, consider the following code:

type Example struct {
    Id []int
    Name []string
}
var MyMap map[string]Example

Here, the MyMap is a map that maps strings to instances of the Example struct. The Example struct contains arrays Id and Name. The goal is to append values to these arrays.

The initial attempt to do this often involves calling methods on the Example struct and passing a pointer receiver to access and modify the arrays. However, directly assigning the result of Oferty.AppendExample(1, "SomeText") to MyMap["key1"] will not work because the map stores a copy of the Example struct, not the struct itself.

The solution lies in modifying the code as follows:

package main

import "fmt"

type Example struct {
    Id []int
    Name []string
}

func (data *Example) AppendOffer(id int, name string) {
    data.Id = append(data.Id, id)
    data.Name = append(data.Name, name)
}

var MyMap map[string]*Example

func main() {
    obj := &Example{[]int{}, []string{}}
    obj.AppendOffer(1, "SomeText")
    MyMap = make(map[string]*Example)
    MyMap["key1"] = obj
    fmt.Println(MyMap)
}

By creating an instance of the Example struct and storing a reference to it in the map (using a pointer type), we can modify the arrays directly. The AppendOffer method operates on a pointer to the Example struct, allowing us to append values to the arrays.

This solution effectively appends values to the arrays within the Example struct, stored in the MyMap. It provides a clear and concise approach to managing arrays inside maps in Go.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3