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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang中select实现非阻塞及超时控制相关的知识,希望对你有一定的参考价值。

// 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!")
}

以上是关于golang中select实现非阻塞及超时控制的主要内容,如果未能解决你的问题,请参考以下文章

Golang✔️走进 Go 语言✔️ 第十七课 select & 超时和非阻塞

c语言中select函数的作用

socket 客户端编程:非阻塞式连接,错误判断及退出重连

channler多路选择和超时控制

GoLang协程与通道---中

selectpoll和epoll机制