一个地鼠(gopher)工厂
goroutine
- 在 Go 中,独立的任务叫做 goroutine
- 虽然 goroutine 与其它语言中的协程、进程、线程都有相似之处,但 goroutine 和它们并不完全相同
- Goroutine 创建效率非常高
- Go 能直截了当的协同多个并发(concurrent)操作
- 在某些语言中,将顺序式代码转化为并发式代码需要做大量修改
- 在 Go 里,无需修改现有顺序式的代码,就可以通过 goroutine 以并发的方式运行任意数量的任务。
启动 goroutine
package main
import (
"fmt"
"time"
)
func main() {
go sleepyGopher() //分支线路
time.Sleep(4 * time.Second) //主线路
}
func sleepyGopher() {
time.Sleep(3 * time.Second)
fmt.Println("... snore ...")
}
不止一个 goroutine
- 每次使用 go 关键字都会产生一个新的 goroutine。
- 表面上看,goroutine 似乎在同时运行,但由于计算机处理单元有限,其实技术上来说,这些 goroutine 不是真的在同时运行。
- 计算机处理器会使用“分时”技术,在多个 goroutine 上轮流花费一些时间。
- 在使用 goroutine 时,各个 goroutine 的执行顺序无法确定。
package main
import (
"fmt"
"time"
)
func main() {
for i := 0; i < 5; i++ {
go sleepyGopher()
}
time.Sleep(4 * time.Second)
}
func sleepyGopher() {
time.Sleep(3 * time.Second)
fmt.Println("... snore ...")
}
goroutine 的参数
- 向 goroutine 传递参数就跟向函数传递参数一样,参数都是按值传递的(传入的是副本)
package main
import (
"fmt"
"time"
)
func main() {
for i := 0; i < 5; i++ {
go sleepyGopher(i)
}
time.Sleep(4 * time.Second)
}
func sleepyGopher(id int) {
time.Sleep(3 * time.Second)
fmt.Println("... ", id, " snore ...")
}
通道 channel
- 通道(channel)可以在多个 goroutine 之间安全的传值。
- 通道可以用作变量、函数参数、结构体字段…
- 创建通道用 make 函数,并指定其传输数据的类型
通道 channel 发送、接收
- 使用左箭头操作符 <- 向通道发送值 或 从通道接收值
- 向通道发送值:c <- 99
- 从通道接收值:r := <- c
- 发送操作会等待直到另一个 goroutine 尝试对该通道进行接收操作为止。
- 执行发送操作的 goroutine 在等待期间将无法执行其它操作
- 未在等待通道操作的 goroutine 仍然可以继续自由的运行
- 执行接收操作的 goroutine 将等待直到另一个 goroutine 尝试向该通道进行发送操作为止。
package main
import (
"fmt"
"time"
)
func main() {
c := make(chan int)
for i := 0; i < 5; i++ {
go sleepyGopher(i, c)
}
for i := 0; i < 5; i++ {
gopherID := <-c
fmt.Println("gopher ", gopherID, " has finished sleeping")
}
}
func sleepyGopher(id int, c chan int) {
time.Sleep(3 * time.Second)
fmt.Println("... ", id, " snore ...")
c <- id
}
使用 select 处理多个通道
- 等待不同类型的值。
- time.After 函数,返回一个通道,该通道在指定时间后会接收到一个值(发送该值的 goroutine 是 Go 运行时的一部分)。
- select 和 switch 有点像。
- 该语句包含的每个 case 都持有一个通道,用来发送或接收数据。
- select 会等待直到某个 case 分支的操作就绪,然后就会执行该 case 分支。
package main
import (
"fmt"
"math/rand"
"time"
)
func main() {
c := make(chan int)
for i := 0; i < 5; i++ {
go sleepyGopher(i, c)
}
timeout := time.After(2 * time.Second)
for i := 0; i < 5; i++ {
select {
case gopherID := <-c:
fmt.Println("gopher ", gopherID, " has finished sleeping")
case <-timeout:
fmt.Println("my patience ran out")
return
}
}
}
func sleepyGopher(id int, c chan int) {
time.Sleep(time.Duration(rand.Intn(4000)) * time.Millisecond)
c <- id
}
- 注意:即使已经停止等待 goroutine,但只要 main 函数还没返回,仍在运行的 goroutine 将会继续占用内存。
select 语句
- select 语句在不包含任何 case 的情况下将永远等下去。
nil 通道
- 如果不使用 make 初始化通道,那么通道变量的值就是 nil(零值)
- 对 nil 通道进行发送或接收不会引起 panic,但会导致永久阻塞。
- 对 nil 通道执行 close 函数,那么会引起 panic
- nil 通道的用处:
- 对于包含 select 语句的循环,如果不希望每次循环都等待 select 所涉及的所有通道,那么可以先将某些通道设为 nil,等到发送值准备就绪之后,再将通道变成一个非 nil 值并执行发送操作。
阻塞和死锁
- 当 goroutine 在等待通道的发送或接收时,我们就说它被阻塞了。
- 除了 goroutine 本身占用少量的内存外,被阻塞的 goroutine 并不消耗任何其它资源。
- goroutine 静静的停在那里,等待导致其阻塞的事情来解除阻塞。
- 当一个或多个 goroutine 因为某些永远无法发生的事情被阻塞时,我们称这种情况为死锁。而出现死锁的程序通常会崩溃或挂起。
地鼠装配线
- Go 允许在没有值可供发送的情况下通过 close 函数关闭通道
- 通道被关闭后无法写入任何值,如果尝试写入将引发 panic。
- 尝试读取被关闭的通道会获得与通道类型对应的零值。
- 注意:如果循环里读取一个已关闭的通道,并没检查通道是否关闭,那么该循环可能会一直运转下去,耗费大量 CPU 时间
- 执行以下代码可得知通道是否被关闭:
package main
import (
"fmt"
"strings"
)
func main() {
c0 := make(chan string)
c1 := make(chan string)
go sourceGopher(c0)
go filterGopher(c0, c1)
printGopher(c1)
}
func sourceGopher(downstream chan string) {
for _, v := range []string{"hello world", "a bad apple", "goodbye all"} {
downstream <- v
}
downstream <- ""
}
func filterGopher(upstream, downstream chan string) {
for {
item := <-upstream
if item == "" {
downstream <- ""
return
}
if !strings.Contains(item, "bad") {
downstream <- item
}
}
}
func printGopher(upstream chan string) {
for {
v := <-upstream
if v == "" {
return
}
fmt.Println(v)
}
}
package main
import (
"fmt"
"strings"
)
func main() {
c0 := make(chan string)
c1 := make(chan string)
go sourceGopher(c0)
go filterGopher(c0, c1)
printGopher(c1)
}
func sourceGopher(downstream chan string) {
for _, v := range []string{"hello world", "a bad apple", "goodbye all"} {
downstream <- v
}
close(downstream)
}
func filterGopher(upstream, downstream chan string) {
for {
item, ok := <-upstream
if !ok {
close(downstream)
return
}
if !strings.Contains(item, "bad") {
downstream <- item
}
}
}
func printGopher(upstream chan string) {
for v := range upstream {
fmt.Println(v)
}
}
package main
import (
"fmt"
"strings"
)
func main() {
c0 := make(chan string)
c1 := make(chan string)
go sourceGopher(c0)
go filterGopher(c0, c1)
printGopher(c1)
}
func sourceGopher(downstream chan string) {
for _, v := range []string{"hello world", "a bad apple", "goodbye all"} {
downstream <- v
}
close(downstream)
}
func filterGopher(upstream, downstream chan string) {
for item := range upstream {
if !strings.Contains(item, "bad") {
downstream <- item
}
}
close(downstream)
}
func printGopher(upstream chan string) {
for v := range upstream {
fmt.Println(v)
}
}
常用模式
作业题
- 编写一个流水线部件(一个 goroutine),他需要记住前面出现的所有值,并且只有在值之前从未出现过的情况下才会将值传递至流水线的下一个阶段。假定第一个值永远不是空字符串。
package main
import (
"fmt"
)
func main() {
c0 := make(chan string)
c1 := make(chan string)
go sourceGopher(c0)
go removeDuplicates(c0, c1)
printGopher(c1)
}
func sourceGopher(downstream chan string) {
for _, v := range []string{"a", "b", "b", "c", "d", "d", "d", "e"} {
downstream <- v
}
close(downstream)
}
func removeDuplicates(upstream, downstream chan string) {
prev := ""
for v := range upstream {
if v != prev {
downstream <- v
prev = v
}
}
close(downstream)
}
func printGopher(upstream chan string) {
for v := range upstream {
fmt.Println(v)
}
}
- 编写一个流水线部件,它接收字符串并将它们拆分成单词,然后向流水线的下一阶段一个接一个的发送这些单词。
package main
import (
"fmt"
"strings"
)
func main() {
c0 := make(chan string)
c1 := make(chan string)
go sourceGopher(c0)
go splitWords(c0, c1)
printGopher(c1)
}
func sourceGopher(downstream chan string) {
for _, v := range []string{"hello world", "a bad apple", "goodbye all"} {
downstream <- v
}
close(downstream)
}
func splitWords(upstream, downstream chan string) {
for v := range upstream {
for _, word := range strings.Fields(v) {
downstream <- word
}
}
close(downstream)
}
func printGopher(upstream chan string) {
for v := range upstream {
fmt.Println(v)
}
}