Go 배열을 맵으로 변환

Jmnote (토론 | 기여)님의 2021년 11월 2일 (화) 20:04 판 (→‎같이 보기)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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