码迷,mamicode.com
首页 > 其他好文 > 详细

go sync.WaitGroup

时间:2020-06-12 14:17:51      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:import   sync   func   amp   port   pac   add   fun   for   

package main

import (
"fmt"
"sync"
)

func say(i int ,wg *sync.WaitGroup) {
defer wg.Done()
fmt.Println(i)
}

func main() {
var wg sync.WaitGroup
for i:=0;i<1000;i++{
wg.Add(1)
go say(i,&wg)
}
fmt.Println(4444444)
wg.Wait()

}

go sync.WaitGroup

标签:import   sync   func   amp   port   pac   add   fun   for   

原文地址:https://www.cnblogs.com/php-linux/p/13098994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!