Go 배열을 맵으로 변환

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:49 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))

1 개요

Go 배열을 맵으로 변환
package main

import "fmt"

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

2 같이 보기

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