Pregunta

This is my code:

package main
import (
    "strconv"
    "fmt"
)
func main() {
    t := strconv.Itoa64(1234)
    fmt.Println(t)
}

Problem:

Why does it cause the following error message?

command-line-arguments .\test.go:7: undefined: strconv.Itoa64 [Finished in 0.2s with exit code 2]

¿Fue útil?

Solución

This is because Itoa64 is not the name of a function in the strconv package. It looks like you really want.

t := strconv.FormatInt(1234, 10)

See http://golang.org/pkg/strconv/#FormatInt

Otros consejos

You can simply convert like this

func main() {
    t := int64(1234)
    fmt.Println(t)
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top