main
Your Name 2024-07-03 19:57:07 +08:00
parent 34407f0dfe
commit 0523a99880
2 changed files with 13 additions and 14 deletions

View File

@ -8,4 +8,6 @@ golang的并发通过goroutine实现goroutine是用户态的线程由go的
golang提供channel用来在多个goroutine之间进行通信。 golang提供channel用来在多个goroutine之间进行通信。
通过go 关键字来开启一个goroutine
只需要在调用函数前加上 go 关键字 即可开启一个goroutine

View File

@ -5,21 +5,18 @@ import (
"time" "time"
) )
func hello() { func hello(i int) {
fmt.Println("hello") fmt.Println("hello world", i)
} }
// 主goroutine开启,之后所有的子协程都会自行退出 // 程序启动之后会创建一个主goroutine去执行
func main() { func main() {
//通过匿名函数开启goroutine
for i := 0; i < 10; i++ { for i := 0; i < 10; i++ {
go func() { go func(i int) {
fmt.Println(i) fmt.Println("hello world", i)
}() //事实上这个函数中的i去找到的是上面这个循环的i所以当goroutine启动过快有可能在一个循环中找到i }(i)
} //开启一个单独的goroutine 去执行hello函数任务
} fmt.Println("main")
fmt.Println("this is main,2") time.Sleep(1 * time.Second)
time.Sleep(time.Second) //main函数结束了 由main函数启动的goroutine也都结束了
} }