Y at-il quelque chose comme Ruby
's awesome_print
in Golang
?
Par exemple, dans Ruby, vous pouvez écrire:
require 'ap'
x = {a:1,b:2} // also works for class
ap x
la sortie serait:
{
"a" => 1,
"b" => 2
}
la chose la plus proche que j'ai pu trouver est Printf("%#v", x)
Si votre objectif est d'éviter d'importer un package tiers, vous pouvez également utiliser json.MarshalIndent :
x := map[string]interface{}{"a": 1, "b": 2}
b, err := json.MarshalIndent(x, "", " ")
if err != nil {
fmt.Println("error:", err)
}
fmt.Print(string(b))
Sortie:
{
"a": 1,
"b": 2
}
Échantillon de travail: http://play.golang.org/p/SNdn7DsBjy
Nevermind, j'ai trouvé un: https://github.com/davecgh/go-spew
// import "github.com/davecgh/go-spew/spew"
x := map[string]interface{}{"a":1,"b":2}
spew.Dump(x)
Donnerait une sortie:
(map[string]interface {}) (len=2) {
(string) (len=1) "a": (int) 1,
(string) (len=1) "b": (int) 2
}
Je suis arrivé à utiliser snippet comme ceci:
func printMap(m map[string]string) {
var maxLenKey int
for k, _ := range m {
if len(k) > maxLenKey {
maxLenKey = len(k)
}
}
for k, v := range m {
fmt.Println(k + ": " + strings.Repeat(" ", maxLenKey - len(k)) + v)
}
}
Le résultat sera comme ceci:
short_key: value1
really_long_key: value2
Dites-moi, s'il existe un moyen plus simple de faire le même alignement.