GO語言學習筆記(三)

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
  1. 在一個函數調用前加上關鍵字go,這次調用就會在一個新的goroutine(輕量級線程,協程)中執行,當被調用函數返回時,這個goroutine也就結束了,如果這個函數有傳回值,那麼這個傳回值將被丟棄
  2. 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}}
  3. channel聲明方法
    var ch chan int 聲明一個map,元素是bool型的channel: var m map[string] chan bool 
  4. 向channel中寫入資料
    ch <- val
  5. 從channel中讀出資料
    val := <- ch
  6. select用法
    select {  case <-chan1:  // 如果chan1成功讀到資料,則進行該case處理語句  case chan2 <- 1:  // 如果成功向chan2寫入資料,則進行該case處理語句  default:  // 如果上面都沒有成功,則進入default處理流程 }
  7. 關閉通道,判斷通道是否關閉
    關閉通道,直接使用Go內建的close(ch)判斷通道是否關閉,使用多重傳回值方式x, ok := <- ch
  8. runtime.Gosched()方法用於出讓時間片,runtime.NumCPU()用於獲得cpu核心數,runtime.GOMAXPROCS(16)設定routine使用多少個CPU核心
  9. 全域唯一性操作sync.Once.Do(func)
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.