摘要: ```go package main import ( "bytes" "encoding/binary" "fmt" ) func main() { var i1 int64 = 511 // [00000000 00000000 ... 00000001 11111111] = [0 0 0 0 0 0 1 255] s1 := make([]byte, 0) buf :=... 阅读全文
posted @ 2018-04-27 17:15 kangeloo 阅读(11002) 评论(0) 推荐(1) 编辑