這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
- 在一個函數調用前加上關鍵字go,這次調用就會在一個新的goroutine(輕量級線程,協程)中執行,當被調用函數返回時,這個goroutine也就結束了,如果這個函數有傳回值,那麼這個傳回值將被丟棄
- go語言中的鎖機制和channel
package mainimport ("fmt""sync""runtime")var counter int = 0func Count(lock *sync.Mutex) {lock.Lock()counter ++fmt.Println(counter)lock.Unlock()}func main() {lock := &sync.Mutex{}for i := 0; i < 10; i ++ {go Count(lock)}for {lock.Lock()c := counterlock.Unlock()runtime.Gosched()if c >= 10 {break}}}
package mainimport ("fmt")func Count(ch chan int) {fmt.Println("Counting")ch <- 1}func main() {chs := make([]chan int, 10)for i := 0; i < 10;i ++ {chs[i] = make(chan int)go Count(chs[i])}for _, ch := range(chs) {<-ch}}
- channel聲明方法
var ch chan int 聲明一個map,元素是bool型的channel: var m map[string] chan bool
- 向channel中寫入資料
ch <- val
- 從channel中讀出資料
val := <- ch
- select用法
select { case <-chan1: // 如果chan1成功讀到資料,則進行該case處理語句 case chan2 <- 1: // 如果成功向chan2寫入資料,則進行該case處理語句 default: // 如果上面都沒有成功,則進入default處理流程 }
- 關閉通道,判斷通道是否關閉
關閉通道,直接使用Go內建的close(ch)判斷通道是否關閉,使用多重傳回值方式x, ok := <- ch
- runtime.Gosched()方法用於出讓時間片,runtime.NumCPU()用於獲得cpu核心數,runtime.GOMAXPROCS(16)設定routine使用多少個CPU核心
- 全域唯一性操作sync.Once.Do(func)