并发

作者: sphinxLike | 来源:发表于2019-12-25 15:51 被阅读0次

    控制并发有两种经典方式,

    WaitGroup:控制多个goroutine同时,

    var wg Sync.waitGroup

    wg.Add(2)

    go func(){}()

    go func(){}()

    )

    chan…select

    Context:

    ctx,cancel := context.WithCancel(context.Background())

    for {

      select {

        case

      }

    }

    相关文章

      网友评论

          本文标题:并发

          本文链接:https://www.haomeiwen.com/subject/qivcoctx.html