CDE
This commit is contained in:
parent
518da4a923
commit
764da6cbbb
6144 changed files with 83610 additions and 11 deletions
25
Task/Concurrent-computing/Go/concurrent-computing-2.go
Normal file
25
Task/Concurrent-computing/Go/concurrent-computing-2.go
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
"math/rand"
|
||||
"os"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
words := []string{"Enjoy", "Rosetta", "Code"}
|
||||
rand.Seed(time.Now().UnixNano())
|
||||
l := log.New(os.Stdout, "", 0)
|
||||
var q sync.WaitGroup
|
||||
q.Add(len(words))
|
||||
for _, w := range words {
|
||||
w := w
|
||||
time.AfterFunc(time.Duration(rand.Int63n(1e9)), func() {
|
||||
l.Println(w)
|
||||
q.Done()
|
||||
})
|
||||
}
|
||||
q.Wait()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue