Go 中將布林值轉換為字串
在Go 中,常常會遇到需要將布林值轉換為字串的場景字串由於各種原因。但是,嘗試使用 string(isExist) 將 bool 直接轉換為字串可能不會產生所需的結果。
Go 中的慣用方法是利用 strconv 套件,特別是 strconv.FormatBool 函數。該函數提供了一種簡單的方法將布林值轉換為其對應的字串表示形式(“true”或“false”)。以下是一個範例:
package main import "fmt" import "strconv" func main() { // Initialize a boolean value isExist := true // Convert the boolean to a string using strconv.FormatBool strValue := strconv.FormatBool(isExist) // Print the converted string fmt.Println("Converted string value:", strValue) }
輸出:
Converted string value: true
strconv.FormatBool 函數確保可靠的轉換,提供清晰一致的方式在Go 程式中將布林值表示為字串。
以上是如何在 Go 中將布林值轉換為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!