在 Go 中將整數轉換為二進位
將數值轉換為二進位表示是程式設計中的常見任務。 Go 在 strconv 套件中提供了方便的內建功能來促進此過程。
strconv.FormatInt 函數
strconv.FormatInt 函數採用 int64 值,並將其轉換為指定基數的字串表示。若要轉換為二進位,請將基數指定為 2。
範例:
n := int64(123) fmt.Println(strconv.FormatInt(n, 2)) // 1111011
輸出:
1111011
進一步資訊:
http://golang.org/pkg/strconv/#FormatInt有關strconv.FormatInt的更多詳細信息,請參閱文檔:
示例代碼:
http://play.golang.org/p/leGVAELMhv簡化的使用 strconv.FormatInt 的示例位於:
以上是Go 中如何將整數轉換為二進位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!