从品牌网站建设到网络营销策划,从策略到执行的一站式服务
// 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!")
}
成都网站建设公司地址:成都市青羊区太升南路288号锦天国际A座10层 建设咨询028-86922220
成都快上网科技有限公司-四川网站建设设计公司 | 蜀ICP备19037934号 Copyright 2020,ALL Rights Reserved cdkjz.cn | 成都网站建设 | © Copyright 2020版权所有.
专家团队为您提供成都网站建设,成都网站设计,成都品牌网站设计,成都营销型网站制作等服务,成都建网站就找快上网! | 成都网站建设哪家好? | 网站建设地图