我正在尝试使用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
?
答案 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?
如果您的目的只是打印该值,则无需将其转换为int
或string
,请使用以下其中一项:
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("The amount is: %d\n", charge.Amount)
答案 4 :(得分:0)
如果您是来这里学习如何将字符串转换为uint64的,这是如何完成的:
newNumber, err := strconv.ParseUint("100", 10, 64)