gpt4 book ai didi

go - 在 Go 中将 int 和 long 转换为字符串

转载 作者:IT王子 更新时间:2023-10-29 01:18:24 25 4
gpt4 key购买 nike

我有这样的并发例程,

Routine 1()
{
for 30 times
Send string
}

Routine 2 (out <-chan string)
{
for
case str := <- out:
fmt.Println(str)
}

现在,我想从例程 1 发送字符串,例如,字符串 + int + 字符串 + 以纳秒为单位的系统时间。任何人都可以帮助我如何实现这一目标。

最佳答案

对不起,我问的太早了。可以这样:

out <- string + strconv.Itoa(int) + string + strconv.Itoa64(time.Nanoseconds())

谢谢。


更新 (Go1):strconv.Itoa64 已替换为 strconv.FormatInt

关于go - 在 Go 中将 int 和 long 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8369599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com