Ich versuche, einen bool
Aufruf mithilfe von isExist
in einen string
( true
oder false
) umzuwandeln , string(isExist)
aber es funktioniert nicht. Was ist der idiomatische Weg, dies in Go zu tun?
go
type-conversion
Kasper
quelle
quelle
strconv.FormatBool(t)
auftrue
"wahr" setzen.strconv.ParseBool("true")
um "wahr" zu setzentrue
. Siehe stackoverflow.com/a/62740786/12817546 .Antworten:
Verwenden Sie das strconv-Paket
docs
strconv.FormatBool(v)
quelle
Die zwei Hauptoptionen sind:
strconv.FormatBool(bool) string
fmt.Sprintf(string, bool) string
mit den"%t"
oder"%v"
Formatierern.Beachten Sie, dass
strconv.FormatBool(...)
ist deutlich schneller alsfmt.Sprintf(...)
durch die folgende Benchmarks demonstriert: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" } }
Rennen wie:
$ 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
quelle
Sie können
strconv.FormatBool
wie folgt verwenden:package main import "fmt" import "strconv" func main() { isExist := true str := strconv.FormatBool(isExist) fmt.Println(str) //true fmt.Printf("%q\n", str) //"true" }
oder Sie können
fmt.Sprint
wie folgt verwenden:package main import "fmt" func main() { isExist := true str := fmt.Sprint(isExist) fmt.Println(str) //true fmt.Printf("%q\n", str) //"true" }
oder schreibe wie
strconv.FormatBool
:// FormatBool returns "true" or "false" according to the value of b func FormatBool(b bool) string { if b { return "true" } return "false" }
quelle
Verwenden
fmt.Sprintf("%v", isExist)
Sie einfach , wie Sie es für fast alle Typen tun würden.quelle