Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the conversion between Go language structure and binary array

2025-04-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article shows you how the conversion between Go language structure and binary array is. The content is concise and easy to understand, which will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.

Go language structure and binary array conversion

The transmission of the structure as a binary stream is a function that is often used as a protocol. To convert a structure to a byte array, you only need to cast a pointer type in the C language. There are pointers in the Go language, but they are not as free as pointers in C, and any type of conversion cannot be done by default. The Go language provides a more secure way. The simplest and most efficient way is to use the Gob library. Alternatively, you can use encoding/binary to convert byte strings into structures. Here is an example of how to use it: a video tutorial

Package mainimport ("fmt"bytes"encoding/binary") func main () {buf: = new (bytes.Buffer) var data = [] interface {} {uint16 (61374), int8 (- 54), uint8 (254th),} for _, v: = range data {err: = binary.Write (buf, binary.LittleEndian) V) if err! = nil {fmt.Println ("binary.Write failed:", err)}} fmt.Printf ("% x", buf.Bytes ())}

Convert with a pointer

Of course, structures and strings have the same memory structure and can also be converted to pointers, although this is wrong with the capacity.

Package mainimport ("unsafe"; "fmt") func main () {var a uint = 0xbeefcafe fmt.Println (* (* byte) (unsafe.Pointer (& a)} the above is what the conversion between Go language structure and binary array is like. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 229

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report