golang binary包

Posted 黎明雨声

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang binary包相关的知识,希望对你有一定的参考价值。

binary包是 golang的二进制包,

a := "hello,this is a first sentence."
//b := "hello,this is a second sentence."

//实例化一个 io容器
by := bytes.NewBuffer([]byte)
//往里面写入4个字节的数据
binary.Write(by,binary.BigEndian,int32(len(a)))

var dataLen int32
//读取4个字节
binary.Read(by,binary.BigEndian,&dataLen)
fmt.Println(dataLen)


以上是关于golang binary包的主要内容,如果未能解决你的问题,请参考以下文章

Golang读源码知 encode/binary

golang工具代码持续汇总

golang 小例子

golang中bufio包

golang中自定义包

golang入门案例之SOCKET