La méthode de conversion d'une chaîne en int dans le langage Go : 1. Convertir une chaîne en int via la méthode "int, err:=strconv.Atoi()" ; 2. Via "int64, err:=strconv.ParseInt ; La méthode .." convertit la chaîne en int64.
L'environnement d'exploitation de cet article : système Windows 7, Go1.11.2, ordinateur Dell G3.
Recommandé : "Tutoriel Golang"
Méthodes de conversion entre les chaînes et divers types int dans Golang
Go le langage implémente la conversion de chaîne int
chaîne en int :
int, err := strconv.Atoi(string)
chaîne en int64 :
int64, err := strconv.ParseInt(string, 10, 64)
Pièce jointe :
int en chaîne :
string := strconv.Itoa(int)
int64 en chaîne :
string := strconv.FormatInt(int64,10)
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!