初级会员
  • 第 74245 位会员
  • Ftworld21
  • 2022-06-21 15:25:30
  • Offline
  • 19 85

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了博文 golang多核设置
    现在go增加了抢占式的调度方式,不会出现这种死循环的情况了
  • 评论了博文 golang 阻塞的坑
    #1 @MrJLuo 写入chan的时候,chan满了,此时写入数据会崩溃么?有应用场景吗 如果在一个goroutine写chan 即使满了也不会崩溃的 会被阻塞掉 测试代码: func test_chan() { c := make(chan int, 2) go func() { c <- 1 fmt.Println("c1") c <- 2 fmt.Println("c2") c <- 3 fmt.Println("c3") c <- 4 fmt.Println("c4") c <- 5 fmt.Println("c5") }() fmt.Println(<-c, <-c) time.Sleep(2 * time.Second) fmt.Println("len", len(c)) } //输出 c1 c2 c3 1 2 c4 len 2
  • 是用什么方式结束程序的?