concurrent goroutines

This commit is contained in:
2021-09-13 18:48:44 +00:00
parent 5160e2ae78
commit 742bbc6e1e
7 changed files with 149 additions and 0 deletions

29
gobyexample/waitgroups.go Normal file
View File

@ -0,0 +1,29 @@
package main
import (
"fmt"
"sync"
"time"
)
func worker(id int) {
fmt.Printf("Worker %d starting\n", id)
time.Sleep(time.Second)
fmt.Printf("Worker %d done\n", id)
}
func main() {
var wg sync.WaitGroup
for i:= 1; i<=5; i++ {
wg.Add(1)
i := i
go func() {
defer wg.Done()
worker(i)
}()
}
wg.Wait()
}