Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私のコードです:
package main import ( "strconv" "fmt" ) func main() { t := strconv.Itoa64(1234) fmt.Println(t) }
問題:
次のエラー メッセージが表示されるのはなぜですか?
command-line-arguments .\test.go:7: undefined: strconv.Itoa64 [終了コード 2 で 0.2 秒で終了]
これは、Itoa64 が strconv パッケージの関数の名前ではないためです。本当に欲しがっているようです。
t := strconv.FormatInt(1234, 10)
http://golang.org/pkg/strconv/#FormatIntを参照してください