最强解析面试题:Goland 消费生产模式实现
Posted 魏小言
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最强解析面试题:Goland 消费生产模式实现相关的知识,希望对你有一定的参考价值。
最强解析面试题:Goland 消费生产模式实现
文章讲解 “ Goland 消费生产模式实现 ” 经典面试题,包含思路及源码,及解惑!
题目
使用 Goland 实现一生产消费模式 Demo。
思路
使用 chan 的特性处理消费生产关系
代码
package main
import (
"fmt"
"time"
)
func main()
ch := make(chan int)
go product(ch)
go consumer(ch)
time.Sleep(1 * time.Second)
func product(ch chan<- int)
for i := 0; i < 10; i++
ch <- i
fmt.Println("Send:", i)
func consumer(ch <-chan int)
for i := 0; i < 10; i++
v := <-ch
fmt.Println("Rec:", v)
附录
自负和自大真的是搞笑!
以上是关于最强解析面试题:Goland 消费生产模式实现的主要内容,如果未能解决你的问题,请参考以下文章