Golang大整数转换为二进制字符串

huangapple go评论84阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2014年4月27日 06:48:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/23317336.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定