初级会员
  • 第 78757 位会员
  • khan-lau
  • khan.lau
  • 2023-08-22 04:23:55
  • Offline
  • 19 95

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了主题 Go1.21.0 发布了
    比较坑的是 `context`. ```go func main() { ctx, cancel := context.WithCancel(context.Background()) newCtx := context.WithoutCancel(ctx) cancel() <-ctx.Done() // ok, ctx has cancled. <-newCtx.Done() // error: dead lock! } ``` 从ctx复制了一份newCtx , 还去掉了`cancel`, 然后newctx就不会关联ctx的`cancel`了