有没有这样的需求,需要起多个线程,然后,只有一个目标之后,才停止所有线程
go代码
package main
import (
"fmt"
"runtime"
"time"
)
var n int = 0
f
2018-05-30