为了账号安全,请及时绑定邮箱和手机立即绑定

golang中select实现非阻塞及超时控制

标签:
Go


// select.go

package main

import (

    "fmt"

    "time"

    //"time"

)

func main() {

    //声明一个channel

    ch := make(chan int)

    //声明一个匿名函数,传入一个参数整型channel类型ch

    go func(ch chan int) {

        ch <- 1

        //往channel写入一个数据,此时阻塞

    }(ch)

    //由于goroutine执行太快,先让它sleep 1秒

    time.Sleep(time.Second)

    select {

    //读取ch,解除阻塞

    case <-ch:

        fmt.Print("come to read ch!")

    default:

        fmt.Print("come to default!")

    }

}

// select.go

//整型channel类型ch一直处于读取状态,所以处于阻塞,使用select实现超时控制

package main

import (

    "fmt"

    "time"

)

func main() {

    ch := make(chan int)

    //buffer channel,1个元素前非阻塞

    timeout := make(chan int, 1)

    go func() {

        time.Sleep(time.Second)

        //写channel

        timeout <- 1

    }()

    select {

    //读channel

    case <-ch:

        fmt.Print("come to read ch!")

        //没有读到channel,实现超时控制

    case <-timeout:

        fmt.Print("come to timeout!")

    }

    fmt.Print("end of code!")

}

// select.go

//使用time.After实现超时控制

package main

import (

    "fmt"

    "time"

)

func main() {

    ch := make(chan int)

    select {

    case <-ch:

        fmt.Print("come to read ch!")

    case <-time.After(time.Second):

        fmt.Print("come to timeout!")

    }

    fmt.Print("end of code!")

}

©著作权归作者所有:来自51CTO博客作者PowerMichael的原创作品,如需转载,请注明出处,否则将追究法律责任


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消