Maison > Article > développement back-end > Comment convertir int64 en chaîne en langage Go
Comment convertir int64 en chaîne en langage go : 1. Créez un exemple de fichier go ; 2. Entrez le code "i := int64(123)" ; 3. Passez "s := strconv.FormatInt( i, 10 )" méthode pour convertir int64 en chaîne.
L'environnement d'exploitation de cet article : système Windows 7, Go1.11.2, ordinateur Dell G3.
int64 à string
i := int64(123) s := strconv.FormatInt(i, 10)
Le deuxième paramètre est la base, facultatif 2~36
Remarque : pour les entiers non signés, vous pouvez utiliser FormatUint ( i uint64, base int)
PS : allez à la conversion de chaîne de langue, int, int64 entre eux
//string到int int,err:=strconv.Atoi(string) //string到int64 int64, err := strconv.ParseInt(string, 10, 64) //int到string string:=strconv.Itoa(int) //int64到string string:=strconv.FormatInt(int64,10) //string到float32(float64) float,err := strconv.ParseFloat(string,32/64) //float到string string := strconv.FormatFloat(float32, 'E', -1, 32) string := strconv.FormatFloat(float64, 'E', -1, 64) // 'b' (-ddddp±ddd,二进制指数) // 'e' (-d.dddde±dd,十进制指数) // 'E' (-d.ddddE±dd,十进制指数) // 'f' (-ddd.dddd,没有指数) // 'g' ('e':大指数,'f':其它情况) // 'G' ('E':大指数,'f':其它情况)
Recommandé : "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!