Golang14 [Golang] http request 보내는 법 [Golang] http request 보내는 법 Go에서는 'net/http'패키지를 사용하여 HTTP 요청을 할 수 있습니다. GET 다음은 URL에 GET 요청을 하고 응답을 인쇄하는 방법에 대한 간단한 예입니다. package main import ( "fmt" "io/ioutil" "net/http" ) func main() { resp, err := http.Get("https://www.example.com") if err != nil { fmt.Println(err) return } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { fmt.Println(err) return } fmt.Println(.. Golang 2023. 2. 11. [Golang] nil map [Golang] nil map map에 nil값으로 초기화 된 변수를 사용하다가 특이한 점을 발견했습니다. Test code package main import ( "fmt" ) func accessMap(map1, map2 map[int]int) { fmt.Println("accessMap Start !") fmt.Println(map1[0], map2[0]) } func writeMap(map1, map2 map[int]int) { fmt.Println("writeMap Start !") map1[0] = 1 map2[0] = 1 fmt.Println(map1[0], map2[0]) } func main() { var ( map1 map[int]int map2 map[int]int ) map1 = n.. Golang 2023. 1. 21. 이전 1 2 다음 💲 추천 글