解释 “<-(chan string)(nil)" 的含义是什么?

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

Explain <-(chan string)(nil)

问题

我在Gobetween的源代码中发现了这个奇怪的构造&lt;-(chan string)(nil)

  • 它只是一种花哨的方式永久阻塞,还是相比于select{}有某种优势?
  • 如何解析这个语句?
英文:

I found this &lt;-(chan string)(nil) strange construct in the Gobetween sources.

  • Is it just a fancy way to block forever or it has some kind of advantage over select{}?
  • <s>How to parse this statement?</s>

答案1

得分: 3

该语句将nil转换为类型为chan string的通道,然后从中读取。

根据Dave Cheney的通道公理

从空通道接收将永远阻塞

英文:

The statement casts nil as type chan string, then reads from it.

According to Dave Cheney's Channel Axioms:

A receive from a nil channel blocks forever

huangapple
  • 本文由 发表于 2017年2月25日 12:51:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/42452096.html
匿名

发表评论

匿名网友

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

确定