golang

【golang】channel介绍

李明燮(li_mingxie)

Go语言是通过 Goroutine 和 Channel 实现并发编程。
Goroutine 用于执行并发任务,Channel 用于 goroutine 之间的同步、通信。