Golang的Channel唤醒

当多个Channel都处于就绪状态时,激活的Channel是随机的

A Tour of Go: A select blocks until one of its cases can run, then it executes that case. It chooses one at random if multiple are ready

并不是先来后到