“String do INT w Golang” Kod odpowiedzi

Golang Convert String na int

Int, err := strconv.Atoi("12345")
Splendid-est Swan

Golang Conwert String na INT64

s := "97"
n, err := strconv.ParseInt(s, 10, 64)
if err == nil {
    fmt.Printf("%d of type %T", n, n)
}
Julianto Tjan

String do INT w Golang

b, err := strconv.ParseBool("true")
f, err := strconv.ParseFloat("3.1415", 64)
i, err := strconv.ParseInt("-42", 10, 64)
u, err := strconv.ParseUint("42", 10, 64)
Careful Chimpanzee

Przejdź ciąg do int

s := "97"
if n, err := strconv.Atoi(s); err == nil {
    fmt.Println(n+1)
} else {
    fmt.Println(s, "is not an integer.")
}
// Output: 98
Its me

Odpowiedzi podobne do “String do INT w Golang”

Pytania podobne do “String do INT w Golang”

Więcej pokrewnych odpowiedzi na “String do INT w Golang” w Go

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu