猿问

Go 中函数的通道返回类型中的 `<-` 是什么意思?

我想知道<-Go 中函数的通道返回类型意味着什么。事实上,类型 T 的通道被写为chan T并使用 来创建make(chan T, N),那么 的<-返回类型中的“”意味着什么time.After?


go doc time.After

package time // import "time"


func After(d Duration) <-chan Time

    After waits for the duration to elapse and then sends the current time on

    the returned channel. It is equivalent to NewTimer(d).C. The underlying

    Timer is not recovered by the garbage collector until the timer fires. If

    efficiency is a concern, use NewTimer instead and call Timer.Stop if the

    timer is no longer needed.

奖金:


我如何看出go doc这time.After是异步的并且在持续时间过去之前不会阻塞?


有只小跳蛙
浏览 104回答 1
1回答

忽然笑

返回时间值的只读<-chan time通道的方法。AfterAchan time是读写通道。奖金:你是对的。文档不够清晰。你必须从签名中猜测出来。你也许可以建议一个更好、更明确的描述After。Go 是一个开源项目,这将是一个做出贡献的机会。
随时随地看视频慕课网APP

相关分类

Go
我要回答