Golang Big Integers to Binary String

夙愿已清 提交于 2019-12-22 08:51:02

问题


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:


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.



来源:https://stackoverflow.com/questions/23317336/golang-big-integers-to-binary-string

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!