275-golang 구조체 변수 이름 및 json

1066 단어 golangjson








golang         json







            

func main() {

	p1 := Person{"Alice", 20}
	fmt.Println(p1)

	bytes, _ := json.Marshal(p1)
	fmt.Println(string(bytes))

}

type Person struct {
	name string
	age  int
}


     
{Alice 20}
{}
   json    ,        






      golang      

golang                    
      、  、           
       ,          ;
       ,         

        ,         ,         




  json             

          

func main() {

	p1 := Person{"Alice", 20}
	fmt.Println(p1)

	bytes, _ := json.Marshal(p1)
	fmt.Println(string(bytes))

}

type Person struct {
	Name string
	Age  int
}


     
{Alice 20}
{"Name":"Alice","Age":20}








        json   key       
       

func main() {

	p1 := Person{"Alice", 20}
	fmt.Println(p1)

	bytes, _ := json.Marshal(p1)
	fmt.Println(string(bytes))

}

type Person struct {
	Name string `json:"name"`
	Age  int    `json:"age"`
}


     
{Alice 20}
{"name":"Alice","age":20}









좋은 웹페이지 즐겨찾기