2
如何在Golang中以二進制格式打印字節數組[]byte{255, 253}
?如何在golang中將字節數組打印爲二進制文件?
I.e.
[]byte{255, 253} --> 1111111111111101
如何在Golang中以二進制格式打印字節數組[]byte{255, 253}
?如何在golang中將字節數組打印爲二進制文件?
I.e.
[]byte{255, 253} --> 1111111111111101
最簡單的方法,我發現:
package main
import "fmt"
func main() {
bs := []byte{255, 253}
for _, n := range(bs) {
fmt.Printf("%b", n) // prints 1111111111111101
}
}
還有'strconv.FormatUint'如果你想要的字符串,但同樣的想法。 – JimB
@JimB你有一個操作系統,用'strconv.FormatUint'來打印二進制文件嗎? – Pylinux
https://play.golang.org/p/uNhVG9v3YK – JimB