摘要: 1. json介绍 2. json格式说明 3. json序列化 3.1 结构体序列化 package main import ( "fmt" "encoding/json" ) //定义一个结构体 type Monster struct { Name string `json:"monster_n 阅读全文
posted @ 2020-01-26 03:17 1769987233 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1. os.Args package main import ( "fmt" "os" ) func main() { fmt.Println("命令行的参数有", len(os.Args)) //遍历os.Args切片,就可以得到所有的命令行输入参数值 for i, v := range os.A 阅读全文
posted @ 2020-01-26 03:10 1769987233 阅读(374) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) type Point struct { x int y int } func main() { var a interface{} var point Point = Point{1, 2} a = point //oK // 如何将 a 阅读全文
posted @ 2020-01-26 02:49 1769987233 阅读(108) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "sort" "math/rand" ) //1.声明Hero结构体 type Hero struct{ Name string Age int } //2.声明一个Hero结构体切片类型 type HeroSlice []Hero //3.实 阅读全文
posted @ 2020-01-26 00:26 1769987233 阅读(246) 评论(0) 推荐(0) 编辑