在 Go 中将整数转换为二进制
将数值转换为二进制表示是编程中的常见任务。 Go 在 strconv 包中提供了方便的内置功能来促进此过程。
strconv.FormatInt 函数
strconv.FormatInt 函数采用 int64 值,并且将其转换为指定基数的字符串表示形式。要转换为二进制,请将基数指定为 2。
示例:
n := int64(123) fmt.Println(strconv.FormatInt(n, 2)) // 1111011
输出:
1111011
进一步信息:
有关 strconv.FormatInt 的更多详细信息,请参阅文档:
http://golang.org/pkg/strconv/#FormatInt
示例代码:
简化的使用 strconv.FormatInt 的示例位于:
http://play.golang.org/p/leGVAELMhv
以上是Go 中如何将整数转换为二进制?的详细内容。更多信息请关注PHP中文网其他相关文章!