-
Notifications
You must be signed in to change notification settings - Fork 0
/
37-互斥锁.go
64 lines (59 loc) · 979 Bytes
/
37-互斥锁.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"fmt"
"sync"
"time"
)
// 使用channel完成同步
//var ch = make(chan int)
//
//func printer37(str string) {
// for _,ch := range str {
// fmt.Printf("%c", ch)
// time.Sleep(time.Millisecond*300)
// }
//
//}
//
//func person371() { // 先执行
// printer37("hello")
// ch <- 98
//
//}
//
//func person372() { // 后执行
// <-ch
// printer37("world")
//}
//
//
//func main() {
// go person371()
// go person372()
// for {
// ;
// }
//}
// 使用锁完成同步
var mutex sync.Mutex // 创建一个互斥量,默认状态是 0,未加锁状态. 锁只有一把
func printer37(str string) {
mutex.Lock() // 访问共享数据前,加锁
for _,ch := range str {
fmt.Printf("%c", ch)
time.Sleep(time.Millisecond*300)
}
mutex.Unlock() // 访问结束,解锁
}
func person371() { // 先执行
printer37("hello")
}
func person372() { // 后执行
printer37("world")
}
func main() {
go person371()
go person372()
for {
;
}
}