通过对通道进行多次写入来理解 golang 阻塞通道行为
在Golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《通过对通道进行多次写入来理解 golang 阻塞通道行为》,聊聊,希望可以帮助到正在努力赚钱的你。
我是 golang 新手,正在尝试了解该语言中的并发性。我有一个代码,可以将一些值推送到通道,然后读取它们。
package main
import (
"log"
"time"
)
func Greet2(c chan string) {
// logging to Stdout is not an atomic operation
// so artificially, sleep for some time
time.Sleep(2 * time.Second)
// 5. until below line reads and unblock the channel
log.Printf("5. Read Greet2:: %s\n\n", <-c)
}
func Greet(c chan string) {
// 4. Push a new value to the channel, this will block
// Process will look for other go routines to execute
log.Printf("4. Add 'Greet::John' to the channel, block until it is read. Remember, 'Greet' goroutine will block and only other goroutines can run even though this go routine can pull the value out from the channel.\n\n")
c <- "Greet::John!"
// 8. This statement will never execute
log.Printf("8. Read Greet:: %s !\n\n", <-c)
}
func main() {
c := make(chan string)
log.Println("1. Main start")
// 2. Both go routine will be declared and both will
// for a value to be inserted in the channel
log.Println("2. Declare go routines.\n\n")
go Greet(c)
go Greet2(c)
// 3. write will block
log.Println("3. Add 'main::Hello' to the channel, block until it is read. Remember, 'main' goroutine will block and only other goroutines can run even though this go routine can pull the value out from the channel.\n\n")
c <- "main::Hello"
// Sleep to give time goroutines to execute
time.Sleep(time.Second)
// 6. read the channel value.
log.Printf("6. Read main:: %s \n\n", <-c)
// 7. Insert a new value to the channel
log.Println("7. Add 'main::Bye' to the channel, block until it is read.\n")
c <- "main::Bye"
// Sleep to give time goroutines to execute
time.Sleep(time.Second)
log.Println("9. Main stop")
}
上述程序的输出是
2023/09/02 21:58:07 1. Main start 2023/09/02 21:58:07 2. Declare go routines. 2023/09/02 21:58:07 3. Add 'main::Hello' to the channel, block until it is read. Remember, 'main' goroutine will block and only other goroutines can run even though this go routine can pull the value out from the channel. 2023/09/02 21:58:07 4. Add 'Greet::John' to the channel, block until it is read. Remember, 'Greet' goroutine will block and only other goroutines can run even though this go routine can pull the value out from the channel. 2023/09/02 21:58:10 5. Read Greet2:: main::Hello 2023/09/02 21:58:11 6. Read main:: Greet::John! 2023/09/02 21:58:11 7. Add 'main::Bye' to the channel, block until it is read. 2023/09/02 21:58:11 8. Read Greet:: main::Bye ! 2023/09/02 21:58:12 9. Main stop
我无法理解为什么 4.(另一个写入通道)在 5.(第一次从通道读取)之前执行,因为 3. 将阻塞,并且在读取值之前通道不可用来自它(在步骤 5. 中)。我是否误解了阻塞行为,在步骤 3. 中,只有 main goroutine 块和 Greet (在步骤 4. 中)可以向通道写入附加值?一个解释确实可以解决我的困惑:)
干杯, DD。
感谢您的回复,我已经创建了一个更简单的程序来演示。并发
package main
import (
"fmt"
)
func do2(c chan int) {
fmt.Println(<-c)
}
func do(c chan int) {
// 4. this statement is trying to write another value "2" to the channel
// Channel already contains "1" as the value which has not been read yet.
// this statement will wait for "1" to get read and block the execution.
// Scheduler will look for other goroutines that can execute.
// However, this("do") is blocked as well as "main" is blocked too and
// there are no other goroutines to execute.
// Hence, will result in a "Deadlock" fatal error.
c <- 2
fmt.Println(<-c)
}
func main() {
// 1. Declare a channel
c := make(chan int)
// 2. Declare "do" goroutine
go do(c)
// 3. write "1" to the channel
// This will block and wait for program's other goroutines to read the value.
// however, there is only "do" goroutine is defined can run at this point.
// Scheduler, will try to run "do" goroutine.
c <- 1
go do2(c)
}
死锁可以通过交换c <- 1和go do2(c)语句来修复。
正确答案
在 Go 中,当您在通道上发送值时(步骤 3 中的 c <- "main::Hello"),发送 Goroutine 将阻塞,直到有另一个 Goroutine 准备好从通道接收值。然而,这并不意味着没有其他 goroutine 可以继续执行。在您的代码中, Greet 和 Greet2 协程都在等待来自通道的值,因此当您在步骤 3 中发送值时,其中一个(不保证是哪一个)将解除阻塞并继续执行。
让我一步步分解事件的顺序:
- 主程序启动,您创建一个频道
c。 - 您声明了两个 goroutine,
Greet和Greet2,并且两者都在等待来自通道的值。 - 您在通道上发送一个值“main::Hello”,这会阻塞主 goroutine,直到其他 goroutine 从通道读取数据。但是,两个 Goroutine 之一(
Greet或Greet2)不会被阻止接收该值。 Greet解除阻塞并继续执行。它记录消息“4. 将‘Greet::John’添加到频道...”并发送“Greet::John!”在频道上。这会再次阻塞Greet,因为此时没有其他 goroutine 可以从通道中读取。Greet2解除阻塞并继续执行。它记录消息“5. Read Greet2:: main::Hello”并从通道读取值“main::Hello”。- Main 解锁,记录“6. Read main:: Greet::John!”并写着“问候::约翰!”来自频道。
- Main 在通道上发送另一个值“main::Bye”。此时,
Greet在向通道写入时仍被阻止,而Greet2因未从通道读取而被阻止。 - 由于
Greet仍然在写入时被阻止,因此它永远不会记录“8. Read Greet:: main::Bye !” - 主要站点。
因此,理解此处行为的关键是,当您在通道上发送值时,它会解锁任何正在等待从通道读取数据的 goroutine。等待的 goroutine 解除阻塞的顺序是不确定的,取决于调度程序。在您的情况下,Greet2 碰巧首先被解锁,但也可能是 Greet。
总之,您观察到的行为与 Go 通道的工作方式完全一致,并且需要注意的是,竞争 Goroutines 之间的执行顺序无法保证。
以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。
Java RESTful API 的未来:解锁 Web 应用程序的无限可能性
- 上一篇
- Java RESTful API 的未来:解锁 Web 应用程序的无限可能性
- 下一篇
- 空接口是绕过类型系统的一种方法吗?
-
- Golang · Go问答 | 1小时前 | 连接池 · 性能排查 · database/sql · Go问答 · Go 连接池 DBStats sql.DB WaitCount SetMaxOpenConns
- Go sql.DB WaitCount 为什么增长:用小实验看连接池预算怎么调
- 214浏览 收藏
-
- Golang · Go问答 | 2天前 | JSON · 接口设计 · Go问答 · nil slice · Go 接口兼容 json.Marshal nil slice empty slice 数组字段
- Go nil slice 为什么 JSON 是 null:接口数组字段统一成 [] 的迁移清单
- 305浏览 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 516次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 500次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 485次学习
-
- ljg-skills
- ljg-skills 是李继刚开源的 AI 技能与提示词集合,面向大模型使用者整理了一批可复用的 prompt、角色设定和任务技能模板,适合用于学习提示词设计、搭建个人 AI 工作流和沉淀团队常用智能体能力。
- 2936次使用
-
- MELO音乐
- MELO音乐是一站式AI视频与音乐制作助手,对标suno, udio的高品质体验。提供伴奏生成、原创写词、无损导出、哼唱识曲、混音变声等全套音频与短视频编辑工具。无论是流行Kpop、电音说唱、民谣古风、摇滚儿歌还是商用轻音乐,MELO为你免费谱曲,轻松做同款!
- 2718次使用
-
- UniScribe
- UniScribe 是一款 AI 音视频转文字与内容整理工具,支持上传音频、视频文件或粘贴 YouTube 链接,自动生成转写文本、摘要、思维导图和关键问题,并支持多格式导出,适合会议记录、课程学习、访谈整理和内容创作复盘。
- 2652次使用
-
- 剧云
- 剧云是专业中文剧本创作平台,安全稳定运行十余年,集成AI编剧、剧本医生审核、人物小传、剧情关系图、大纲编写、多人协作、Word导入导出、版权管控功能,数据安全防护,轻松高效创作剧本。
- 2884次使用
-
- 万象有声
- 万象有声,一个专为有声创作者打造的新一代智能有声内容创作平台。平台提供专业的智能拆章、智能画本编辑、AI配音、AI生成音效、后期制作、智能对轨、智能审听等有声创作全流程工具,可以帮助创作者高效、低成本创作出引人入胜的有声作品。立即体验,让有声书制作更简单!
- 2828次使用
-
- 用Nginx反向代理部署go写的网站。
- 2023-01-17 502浏览
-
- GoLand调式动态执行代码
- 2023-01-13 502浏览
-
- 从不同的 go 例程将数据写入同一通道无需等待组即可正常工作
- 2024-04-29 501浏览
-
- Golang rsa-oaep解密失败,前端使用webcrypto
- 2024-04-26 501浏览
-
- 如何从用户输入以惰性方式初始化包的全局变量?
- 2024-04-24 501浏览

