2020
12-18
12-18
golang实现整型和字节数组之间的转换操作
我就废话不多说了,大家还是直接看代码吧~//isSymbol表示有无符号funcBytesToInt(b[]byte,isSymbolbool)(int,error){ifisSymbol{returnbytesToIntS(b)}returnbytesToIntU(b)}//字节数(大端)组转成int(无符号的)funcbytesToIntU(b[]byte)(int,error){iflen(b)==3{b=append([]byte{0},b...)}bytesBuffer:=bytes.NewBuffer(b)switchlen(b){case1:vartmpuint8err:=binary.Read(bytesBuffer,...
继续阅读 >