Go 배열을 맵으로 변환

Jmnote (토론 | 기여)님의 2020년 7월 27일 (월) 16:32 판 (새 문서: ==개요== ;Go 배열을 맵으로 변환 <source lang='go' run> package main import "fmt" func main() { arr := [4]int{1, 2, 3, 4} keys := [4]string{"first", "second", "thi...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}