码迷,mamicode.com
首页 > Web开发 > 详细

6-1 json 序列化

时间:2019-07-26 14:25:10      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:string   bsp   err   byte   bytes   mars   return   turn   结构体   

package main

import (
    "encoding/json"
    "fmt"
)

type Persion struct {
    Name string
    Age  int
    Rmb  float64
    Sex  bool
    Hobby []string
}

func main() {
persion :
= Persion{"谦哥", 50, 123.45, true, []string{"抽烟", "喝酒", "烫头"}} //使用json包序列化结构体 bytes, e := json.Marshal(persion) if e != nil { fmt.Printf("序列化失败,err=",e) return } fmt.Println(string(bytes)) }

 

6-1 json 序列化

标签:string   bsp   err   byte   bytes   mars   return   turn   结构体   

原文地址:https://www.cnblogs.com/paad/p/11249983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!