Go---channel實現生產者消費者,go---channel生產者

來源:互聯網
上載者:User

Go---channel實現生產者消費者,go---channel生產者

一、無緩衝區

package main// 無緩衝的channelimport ("fmt""time")func produce(ch chan<- int) {for i := 0; i < 10; i++ {ch <- ifmt.Println("Send:", i)}}func consumer(ch <-chan int) {for i := 0; i < 10; i++ {v := <-chfmt.Println("Receive:", v)}}// 因為channel沒有緩衝區,所以當生產者給channel賦值後,// 生產者線程會阻塞,直到消費者線程將資料從channel中取出// 消費者第一次將資料取出後,進行下一次迴圈時,消費者的線程// 也會阻塞,因為生產者還沒有將資料存入,這時程式會去執行// 生產者的線程。程式就這樣在消費者和生產者兩個線程間不斷切換,直到迴圈結束。func main() {ch := make(chan int)go produce(ch)go consumer(ch)time.Sleep(1 * time.Second)}

二、有緩衝區

在這個程式中,緩衝區可以儲存10個int類型的整數,在執行生產者線程的時候,線程就不會阻塞,一次性將10個整數存入channel,在讀取的時候,也是一次性讀取。

package main// 帶緩衝區的channelimport ("fmt""time")func produce(ch chan<- int) {for i := 0; i < 10; i++ {ch <- ifmt.Println("Send:", i)}}func consumer(ch <-chan int) {for i := 0; i < 10; i++ {v := <-chfmt.Println("Receive:", v)}}func main() {ch := make(chan int, 10)go produce(ch)go produce(ch)time.Sleep(1 * time.Second)}


查看評論

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.