• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    golang中单向channel的语法介绍

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

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

    // 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{} :如果函数定义改成这样,其意义是,

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

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

    总结

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

    您可能感兴趣的文章:
    • 基于golang channel实现的轻量级异步任务分发器示例代码
    • golang中for循环遍历channel时需要注意的问题详解
    • golang实现基于channel的通用连接池详解
    • Golang优雅关闭channel的方法示例
    • golang判断chan channel是否关闭的方法
    • Golang中channel使用的一些小技巧
    • Golang中channel的原理解读(推荐)
    上一篇:浅谈Go语言中的结构体struct & 接口Interface & 反射
    下一篇:利用Golang解析json数据的方法示例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    golang中单向channel的语法介绍 golang,中,单向,channel,的,