Golang实现生产者和消费者
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang实现生产者和消费者相关的知识,希望对你有一定的参考价值。
参考技术A packagemainimport(
"fmt"
"sync"
)
//实现一个生产者和消费者
/*生产者产生数据添加到通道里面,消费者消费数据从通道里面
不带缓存实现
*/
funcmain()
ch:=make(chanint)
varwgsync.WaitGroup
wg.Add(2)
goproducers(&wg,ch)
goconsumer(&wg,ch)
wg.Wait()
//生产者
funcproducers(wg*sync.WaitGroup,chchanint)
fori:=0;i<10;i++
fmt.Println("send:",i)
ch<-i
close(ch)
wg.Done()
//消费者
funcconsumer(wg*sync.WaitGroup,chchanint)
forv:=rangech
fmt.Println("recv:",v)
wg.Done()
���$�
golang 的 channel 实现 生产者/消费者 模型
package main import ( "fmt" "math/rand" "time" ) func productor(channel chan<- string) { for { channel <- fmt.Sprintf("%v", rand.Float64()) time.Sleep(time.Second * time.Duration(1)) } } func customer(channel <-chan string) { for { message := <-channel // 此处会阻塞, 如果信道中没有数据的话 fmt.Println(message) } } func main() { channel := make(chan string, 5) // 定义带有5个缓冲区的信道(当然可以是其他数字) go productor(channel) // 将 productor 函数交给协程处理, 产生的结果传入信道中 customer(channel) // 主线程从信道中取数据 }
以上是关于Golang实现生产者和消费者的主要内容,如果未能解决你的问题,请参考以下文章
golang 的 channel 实现 生产者/消费者 模型