这里就可以用到缓冲信道,在创建信道的时候声明缓冲大小
make(chan int, 100) 赋予 100 个 int 大小的缓冲内存,就是说可以储存 100 个 int。