在Go 中將布林值轉換為字串
在Go 中將布林值轉換為字串需要使用strconv 套件的簡單方法。 strconv.FormatBool(v) 函數提供了一個慣用的方法來實作此轉換。
strconv.FormatBool 函數採用布林值作為參數,並傳回該值的字串表示形式。如果輸入值為 true,則傳回字串「true」。如果輸入值為 false,則傳回字串「false」。
為了說明其用法,請考慮以下程式碼範例:
package main import "fmt" import "strconv" func main() { // Define a boolean value isExist := true // Convert the boolean value to a string strIsExist := strconv.FormatBool(isExist) // Print the string representation fmt.Println(strIsExist) // Output: "true" }
在此範例中,我們定義一個布林值isExist,然後使用strconv.FormatBool 函數將其轉換為字串。產生的字串 strIsExist 被列印到控制台,在本例中,它將輸出「true」。
以上是如何在 Go 中將布林值轉換為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!