string(isExist)
を使用して、bool
というisExist
をstring
(true
またはfalse
)に変換しようとしていますが、機能しません。 Goでこれを行う慣用的な方法は何ですか?
strconvパッケージを使用する
strconv.FormatBool(v)
func FormatBool(b bool)string FormatBoolは「true」または「false」を返します
bの値による
次のように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"
}
2つの主なオプションは次のとおりです。
strconv.FormatBool(bool) string
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
ほとんどすべてのタイプと同じように、fmt.Sprintf("%v", isExist)
を使用してください。