gpt4 book ai didi

golang中单向channel的语法介绍

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章golang中单向channel的语法介绍由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文主要给大家介绍的是关于golang单向channel语法的相关内容,分享出来供大家参考学习,下面话不多说,来一起看看详细的介绍:

今天闲来无事补充一下golang的语法知识,想起来看看context的用法,结果碰到了一个没见过的channel语法:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// A Context carries a deadline, cancelation signal, and request-scoped values
// across API boundaries. Its methods are safe for simultaneous use by multiple
// goroutines.
type Context interface {
  // Done returns a channel that is closed when this `Context` is canceled
  // or times out.
  Done() <-chan struct{}
 
  // Err indicates why this Context was canceled, after the Done channel
  // is closed.
  Err() error
 
  // Deadline returns the time when this Context will be canceled, if any.
  Deadline() (deadline time.Time, ok bool)
 
  // Value returns the value associated with key or nil if none.
  Value(key interface{}) interface{}
}

注意看:Done() <- chan struct{} ,一个接口函数的声明怎么这么奇怪呢?下面来分解一下.

Done() chan struct{} :如果函数定义改成这样,其意义是, 。

  • 函数名Done,参数(),返回值chan struct{}
  • 单独拿返回值来说,它是一个管道chan,内部的数据类型是struct{}
  • 单独拿struct{}来说,我们熟悉type Name struct{a int, b bool}这样去定义一个结构体的类型,其实struct{…}就是定义结构体,和map[string]int这种定义是一样的,type只是给它启了一个别名。

<- chan struct{} :单独看这个表达式,我们知道如果ch := make(chan struct{}) ,那么<- ch是从管道里取出数据。但是chan struct{}是类型而不是变量,竟然能从一个类型里取数据??

其实<-chan int仍旧是一个管道类型,它叫做单向channel。如果是<-chan int,说明是只能读不能写的管道(也不能关闭),如果是chan <- int ,说明是只能写不能读的管道(可以关闭),仅此而已! 。

总结 。

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者使用Go语言能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对我的支持.

原文链接:https://yuerblog.cc/2017/07/15/golang-single-direction-channel/ 。

最后此篇关于golang中单向channel的语法介绍的文章就讲到这里了,如果你想了解更多关于golang中单向channel的语法介绍的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com