dongmuzhan4705 2011-12-03 17:42
浏览 88
已采纳

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

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条回答 默认 最新

  • doushi3803 2011-12-03 18:03
    关注

    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?