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.
In order to convert an integer value to string in Golang we can use the FormatInt function from the strconv package. FormatInt returns the string representation of i in the given base, for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z' for digit values >= 10.
We can convert int to String in java using String. valueOf() and Integer.
Go is a statically typed language, which means types of variables must be known at compile time, and you can't change their type at runtime.
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
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With