英文:
"Bounded" meaning in programming
问题
我正在尝试阅读以下演示文稿:
http://www.slideshare.net/borderj/concurrency-in-go-10662038
我发现了这个陈述:
> "typed BOUNDED blocking"
在这里,BOUNDED 是什么意思?
我尝试搜索了一下,发现了有关 BOUNDED BUFFER 的解释,但我正在寻找更一般的理解。
英文:
I am trying to follow below presentation
http://www.slideshare.net/borderj/concurrency-in-go-10662038
And I found this statement ,
> "typed BOUNDED blocking"
in here what exactly mean by BOUNDED ?
I tried gooling and found that BOUNDED BUFFER explanations but I am looking for more general understanding
答案1
得分: 4
这是一种宽松的说法,意思是通道具有明确的大小,并且如果通道已满,则发送操作会被阻塞。在软件开发中,“bounded”本身并没有一个明确定义的术语。
英文:
It's a loose way to say that channels have an explicit size, and sends block if they're full. By itself "bounded" is not a well-defined term in software development, though.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论