web-dev-qa-db-ja.com

Goでブールを文字列に変換する方法は?

string(isExist)を使用して、boolというisExiststringtrueまたはfalse)に変換しようとしていますが、機能しません。 Goでこれを行う慣用的な方法は何ですか?

37
Kin

strconvパッケージを使用する

ドキュメント

strconv.FormatBool(v)

func FormatBool(b bool)string FormatBoolは「true」または「false」を返します
bの値による

70
Brrrr

次のようにstrconv.FormatBoolを使用できます。

package main

import "fmt"
import "strconv"

func main() {
    isExist := true
    str := strconv.FormatBool(isExist)
    fmt.Println(str)        //true
    fmt.Printf("%q\n", str) //"true"
}

または、次のようにfmt.Sprintを使用できます。

package main

import "fmt"

func main() {
    isExist := true
    str := fmt.Sprint(isExist)
    fmt.Println(str)        //true
    fmt.Printf("%q\n", str) //"true"
}

またはstrconv.FormatBoolのように記述します:

// FormatBool returns "true" or "false" according to the value of b
func FormatBool(b bool) string {
    if b {
        return "true"
    }
    return "false"
}
6
user6169399

2つの主なオプションは次のとおりです。

  1. strconv.FormatBool(bool) string
  2. fmt.Sprintf(string, bool) string"%t"または"%v"フォーマッターを使用。

以下のベンチマークで示されるように、strconv.FormatBool(...)fmt.Sprintf(...)よりもかなり高速です:

func Benchmark_StrconvFormatBool(b *testing.B) {
  for i := 0; i < b.N; i++ {
    strconv.FormatBool(true)  // => "true"
    strconv.FormatBool(false) // => "false"
  }
}

func Benchmark_FmtSprintfT(b *testing.B) {
  for i := 0; i < b.N; i++ {
    fmt.Sprintf("%t", true)  // => "true"
    fmt.Sprintf("%t", false) // => "false"
  }
}

func Benchmark_FmtSprintfV(b *testing.B) {
  for i := 0; i < b.N; i++ {
    fmt.Sprintf("%v", true)  // => "true"
    fmt.Sprintf("%v", false) // => "false"
  }
}

として実行:

$ go test -bench=. ./boolstr_test.go 
goos: darwin
goarch: AMD64
Benchmark_StrconvFormatBool-8       2000000000           0.30 ns/op
Benchmark_FmtSprintfT-8             10000000           130 ns/op
Benchmark_FmtSprintfV-8             10000000           130 ns/op
PASS
ok      command-line-arguments  3.531s
5
maerics

ほとんどすべてのタイプと同じように、fmt.Sprintf("%v", isExist)を使用してください。

3
akim