在golang中将uint64转换为字符串

时间:2017-01-22 05:18:40

标签: string go type-conversion strconv

我正在尝试使用string打印uint64,但我使用的strconv方法没有组合。

log.Println("The amount is: " + strconv.Itoa((charge.Amount)))

给我:

cannot use charge.Amount (type uint64) as type int in argument to strconv.Itoa

如何打印此string

5 个答案:

答案 0 :(得分:46)

strconv.Itoa()需要int类型的值,因此您必须将其赋予:

log.Println("The amount is: " + strconv.Itoa(int(charge.Amount)))

但是要知道如果int是32位(uint64是64),这可能会失去精确度,同时签名也不同。 strconv.FormatUint()会更好,因为它需要uint64类型的值:

log.Println("The amount is: " + strconv.FormatUint(charge.Amount, 10))

有关更多选项,请参阅以下答案:Golang: format a string without printing?

如果您的目的只是打印该值,则无需将其转换为intstring,请使用以下其中一项:

log.Println("The amount is:", charge.Amount)
log.Printf("The amount is: %d\n", charge.Amount)

答案 1 :(得分:21)

如果您想将int64转换为string,可以使用:

strconv.FormatInt(time.Now().Unix(), 10)

strconv.FormatUint

答案 2 :(得分:5)

如果您确实希望将其保留在字符串中,则可以使用Sprint功能之一。例如:

myString := fmt.Sprintf("%v", charge.Amount)

答案 3 :(得分:2)

log.Printf

log.Printf("The amount is: %d\n", charge.Amount)

答案 4 :(得分:0)

如果您是来这里学习如何将字符串转换为uint64的,这是如何完成的:

newNumber, err := strconv.ParseUint("100", 10, 64)