关于定义单向读channel的问题

superheng · 2018-09-19 18:55:02 · 2693 次点击 · 预计阅读时间不到 1 分钟 · 大约8小时之前 开始浏览    
这是一个创建于 2018-09-19 18:55:02 的文章,其中的信息可能已经有所发展或是发生改变。

新人小白求教。目前正在学习 go 中,在 channel 章节遇到一个问题:

  • 申明一个单向读 channel 使用 var ch <-chan int 没有问题
  • 通过类型转换定义时:

    ch := make(chan int)

    read := <-chan int(ch)

    这样定义出来的 readint 类型,使用 <-read 类似这样的操作就会报错 invalid operation: <-onlyRead (receive from non-chan type int)

但是 《go语言编程》一书就是这么定义的,不知道问题出在哪里,求指教,感激不尽!!


有疑问加站长微信联系(非本文作者))

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2693 次点击  
加入收藏 微博
3 回复  |  直到 2018-10-09 14:43:58
txg5214
txg5214 · #1 · 6年之前

完整例子,定位问题呗

superheng
superheng · #2 · 6年之前

@txg5214 timeout := make(chan bool, 1) go func() { time.Sleep(1e9) timeout <- true }()

ch := make(chan int)
onlyWrite := chan<- int(ch)
onlyRead := <-chan int(ch)

select {
case onlyWrite <- 1:
    fmt.Println("write success")
case <- onlyRead:
    fmt.Println("read success")
case <-timeout:
    fmt.Println("stop")
}

上面的代码编译的时候就会报错 invalid operation: <-onlyRead (receive from non-chan type int)
txg5214
txg5214 · #3 · 6年之前

这个我还真不知道为啥

添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传