首頁 > 後端開發 > Golang > 如何在 Go 中將布林值轉換為字串?

如何在 Go 中將布林值轉換為字串?

Susan Sarandon
發布: 2024-12-06 00:36:11
原創
213 人瀏覽過

How to Convert a Boolean to a String in Go?

在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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板