How does Go start a new runtime thread
This article mainly introduces the relevant knowledge of "how to start a new runtime thread in Go". The editor shows you the operation process through an actual case. The operation method is simple, fast and practical. I hope this article "how to start a new runtime thread in Go" can help you solve the problem.
Go allows you to start a new runtime thread, goroutine, using the go statement to execute a function with a different, newly created goroutine. All goroutine in the same program share the same address space.
Example
Package main
Import (
"fmt"
"time"
)
Func say (s string) {
For I: = 0; I < 5; iTunes + {
Time.Sleep (100 * time.Millisecond)
Fmt.Println (s)
}
}
Func main () {
Go say ("world")
Say ("hello")
}
Execute the above code and you will see that the output of hello and world is not in a fixed order. Because they are executed by two goroutine:
This is the end of worldhellohelloworldworldhellohelloworldworldhello's introduction to "how Go starts a new runtime thread". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.