Maison > Article > développement back-end > Comment convertir un entier en chaîne en langage Go
Comment convertir un entier en chaîne en langage Go : 1. Utilisez "fmt.Println(strconv.Itoa(100))" pour convertir un entier en chaîne ; 2. Utilisez "i, _ := strconv .Atoi ; ("100") fmt.Println(i)" peut être utilisé pour convertir une chaîne en entier.
L'environnement d'exploitation de cet article : système Windows10, Go 1.11.2, ordinateur Thinkpad T480.
Comment convertir un int en chaîne en langage Go ?
Entier vers chaîne
fmt.Println(strconv.Itoa(100))
Le code source de cette méthode est :
// Itoa is shorthand for FormatInt(i, 10). func Itoa(i int) string { return FormatInt(int64(i), 10) }
On voit qu'il s'agit d'une simple implémentation de la méthode FormatInt.
Convertir une chaîne en entier
i, _ := strconv.Atoi("100") fmt.Println(i)
Recommandations associées : Tutoriel Golang
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!