Go 배열을 맵으로 변환

1 개요[ | ]

Go 배열을 맵으로 변환
package main

import "fmt"

func main() {
    array := [4]int{1, 2, 3, 4}
    keys := [4]string{"first", "second", "third", "fourth"}
    m := make(map[interface{}]interface{}, len(array))
	for i, key := range keys {
		m[key] = array[i]
	}
	fmt.Println(m)
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}