普通网友 2018-11-17 04:25
浏览 314
已采纳

Golang中通道缓冲容量0和1之间的差异

I have set channel buffer size to zero, like var intChannelZero = make(chan int) , when getting value from the intChannelZero will be blocked until the intChannelZero has value.

Also, I set channel buffer size to one, like var intChannelOne = make(chan int, 1), when getting value from the intChannelOne will be blocked until the intChannelOne has value.

We know the capacity of intChannelZero is zero, the capacity of intChannelOne is one, so I want to know:

  • When putting a value to the intChannelZero like intChannelZero <- 1, where the value be saved?
  • The differences between intChannelZero and intChannelOne when putting a value to them.

Who can explain it at the level of Golang Runtime Enviroment? Thanks a lot.

  • 写回答

2条回答 默认 最新

  • doujing8435 2018-11-17 06:27
    关注

    If the channel is unbuffered (capacity is zero), then communication succeeds only when the sender and receiver are both ready.

    If the channel is buffered (capacity >= 1), then send succeeds without blocking if the channel is not full and receive succeeds without blocking if the buffer is not empty.

    When putting a value to the intChannelZero like intChannelZero <- 1, where the value be saved?

    The value is copied from the sender to the receiver. The value is not saved anywhere other than whatever temporary variables the implementation might use.

    The differences between intChannelZero and intChannelOne when putting a value to them.

    Send on intChannelZero blocks until a receiver is ready.

    Send on intChannelOne blocks until space is available in the buffer.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制