How to cast interface{} to a map in GO

2k Views Asked by At

I am new to Go & I am trying to learn how to cast interface{} to a Map. Here is an example of what I am trying to implement.

Playground link : https://play.golang.org/p/3jhKlGKO46Z

Thanks for the help.

package main

import (
    "fmt"
)


func main() {

    Map := make(map[string]interface{})
    test(Map)

    for k,v := range Map {
        fmt.Println("key : %v Value : %v", k, v)
    }

}

func test(v interface{}) error{

    data := make(map[int]interface{})

    for i := 0; i < 10; i++ {
        data[i] = i * 5
    }

    for key,val := range data {
        //  fmt.Println("key : %v Value : %v", key, val)
        v[key] = val
    }

    return nil
1

There are 1 best solutions below

0
On

Go supports type assertions for the interfaces. It provides the concrete value present in the interface.

You can achieve this with following code.

    m, ok := v.(map[int]interface{})
    if ok {
      // use m
      _ = m
    }

If the asserted value is not of given type, ok will be false

If you avoid second return value, the program will panic for wrong assertions.

I strongly recommend you to go through https://tour.golang.org