英文:
Converting int and long into string in Go
问题
我有一个类似这样的并发例程,
例程1()
{
重复30次
发送字符串
}
例程2 (out <-chan 字符串)
{
无限循环
情况 str := <- out:
fmt.Println(str)
}
现在,我想从例程1发送字符串,例如,字符串 + 整数 + 字符串 + 系统纳秒时间。有人可以帮我实现这个吗?
英文:
I have concurrent routine like this,
Routine 1()
{
for 30 times
Send string
}
Routine 2 (out <-chan string)
{
for
case str := <- out:
fmt.Println(str)
}
Now, I want to send from routine 1 string like, string + int + string + system time in nanosecond. Can anybody help me how can I achieve this.
答案1
得分: 10
抱歉,我提得太早了。可以像这样实现:
out <- string + strconv.Itoa(int) + string + strconv.Itoa64(time.Nanoseconds())
谢谢。
更新(Go1):strconv.Itoa64
已被strconv.FormatInt
替代。
英文:
Sorry, I asked it too early. It is possible like this:
out <- string + strconv.Itoa(int) + string + strconv.Itoa64(time.Nanoseconds())
Thanks.
Update (Go1): strconv.Itoa64
has been replaced by strconv.FormatInt
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论