英文:
Golang Big Integers to Binary String
问题
我看到将Golang的大整数(math/big包)转换为字符串很简单,但是否有将大整数转换为二进制字符串的直接方法呢?
英文:
I see it's simple to convert golang's big int (math/big package) to a string, but is there any straightforward way of converting a big int to a binary string?
答案1
得分: 13
应该很简单,就像这样:
i := big.NewInt(2014)
s := fmt.Sprintf("%b", i) // 11111011110
fmt.Println(s)
希望这是你要找的。
英文:
Should be as easy as this:
i := big.NewInt(2014)
s := fmt.Sprintf("%b", i) // 11111011110
fmt.Println(s)
Hope this is what you are looking for.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论