"Bounded" meaning in programming

huangapple go评论77阅读模式
英文:

"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.

huangapple
  • 本文由 发表于 2013年8月23日 16:26:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/18398200.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定