英文: Golang worker pool not returning any results 问题 我正在尝试构建一个简单的TCP端口扫描器,以练习在Go语言中学习并发编程。我正在按照这个YouT...
比较两个树在Golang中是否等价,使用goroutines。
英文: Compare Two trees are equivalent in Golang Using goroutines 问题 不使用通道,我可以比较这两棵树是否相等,但是使用通道时,我无法弄清...
Go- How to close channels in recursive function
英文: Go- How to close channels in recursive function 问题 我是你的中文翻译助手,以下是你提供的代码的翻译: 我刚开始学习Go语言,并且正在尝试使用通...
我使用了sync包,但在Golang中遇到了死锁错误;(
英文: I used sync package but I get Deadlock error in Golang ;( 问题 你的代码出现了死锁的情况。死锁是指两个或多个goroutine在相互等...
为什么所有任务都在第一个goroutine中运行?
英文: Why all tasks run in first goroutine? 问题 我正在实现管道的扇入扇出模式。但我不明白为什么代码会像这样工作,请解释一下。 第一段代码。所有任务都在第一个g...
goroutines的输出错误
英文: Incorrect output by goroutines 问题 我正在观看一个讲座,作者在其中使用Go协程构建了一个状态应用程序,但在一段时间后表现出奇怪的行为。 以下是代码: func ...
使用Go协程创建发布-订阅模式
英文: Creating pub sub using go routine 问题 我正在尝试创建goroutine来实现任务。像A、B、C这样没有依赖关系的任务很容易实现并且正常工作。只是在实现依赖于...
使用goroutines在Golang中验证结构体
英文: Validate struct in Golang using goroutines 问题 我有一个简单的结构体,我想要验证其中的字段。这将来会是一个相对复杂的嵌套结构体,但现在很简单。 ty...
Using function to process synchronously and asynchronously both and get results in golang
英文: Using function to process synchronously and asynchronously both and get results in golang 问题 我想要...
全局线程本地存储在Go语言中的可行性和最佳实践
英文: Global Thread-local Storage feasibility and best Practices in Go 问题 我是一个Golang的初学者,我想在Go中实现类似于Ja...