golang 中有多种转换结构体的方法:类型转换:使用 type 关键字指定目标类型。json 转换:使用 encoding/json 包进行 json 编码和解码。protobuf 转换:使用 google.golang.org/protobuf 包进行 protobuf 编码和解码。xml 转换:使用 encoding/xml 包进行 xml 编码和解码。
Golang 中结构体转换
如何转换 Golang 结构体?
在 Golang 中,可以采用多种方法来转换结构体:
类型转换
使用 type 关键字指定目标类型,将结构体转换为目标类型。例如:
type Person struct { Name string Age int } type Employee struct { Person Company string } func main() { p := Person{Name: "John", Age: 30} e := Employee{Person: p, Company: "Google"} fmt.Println(e) }
登录后复制
JSON 转换
使用 encoding/json 包进行 JSON 转换。可以将结构体编码为 JSON 字符串,然后再解码回结构体。例如:
package main import ( "encoding/json" "fmt" ) type Person struct { Name string Age int } func main() { p := Person{Name: "John", Age: 30} // 编码为 JSON jsonStr, _ := json.Marshal(p) fmt.Println(string(jsonStr)) // 解码为 Person var decodedPerson Person _ = json.Unmarshal(jsonStr, &decodedPerson) fmt.Println(decodedPerson) }
登录后复制
Protobuf 转换
使用 google.golang.org/protobuf 包进行 Protobuf 转换。可以将结构体编码为 Protobuf 消息,然后再解码回结构体。例如:
package main import ( "fmt" pb "<a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/15841.html" target="_blank">git</a>hub.com/example/examplepb" ) func main() { p := &pb.Person{Name: "John", Age: 30} // 编码为 Protobuf bytes, _ := p.Marshal() fmt.Println(bytes) // 解码为 Person var decodedPerson pb.Person _ = decodedPerson.Unmarshal(bytes) fmt.Println(decodedPerson) }
登录后复制
XML 转换
使用 encoding/xml 包进行 XML 转换。可以将结构体编码为 XML 文档,然后再解码回结构体。例如:
package main import ( "encoding/xml" "fmt" ) type Person struct { Name string Age int } func main() { p := Person{Name: "John", Age: 30} // 编码为 XML xmlStr, _ := xml.Marshal(p) fmt.Println(string(xmlStr)) // 解码为 Person var decodedPerson Person _ = xml.Unmarshal(xmlStr, &decodedPerson) fmt.Println(decodedPerson) }
登录后复制
以上就是golang结构体怎么转换的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:木子,转转请注明出处:https://www.dingdanghao.com/article/530613.html