随笔分类 -  Go

Go语言开发中经常遇到的一些技术
摘要:cancel package main import ( "context" "fmt" "time" ) func gen(ctx context.Context) <-chan int { dst := make(chan int) n := 1 go func() { for { select { ... 阅读全文
posted @ 2019-12-19 19:27 离地最远的星 阅读(502) 评论(0) 推荐(0)