Go语言并发

2018-10-11  本文已影响0人  超级皮波9

Go语言并发

package main

import "fmt"

func sing(){
   for i:=1;i<10;i++{
      fmt.Println("我在唱歌")
   }
}

func dancing(){
   for i:=1;i<10;i++{
      fmt.Println("我在跳舞")
   }
}

func main(){

   go sing()    // 开启协程   Go
   go dancing()    // 开启协程   Go

   for{
      ;
   }

}

Runtime 包中常用的函数

runtime.Gosched()
runtime.Goexit( )
runtime.GOMAXPROCS( n int )
runtime.NumCPU( )
上一篇下一篇

猜你喜欢

热点阅读