Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 613 Bytes

File metadata and controls

19 lines (10 loc) · 613 Bytes

runtime包(并发编程)

runtime.Gosched() 让出时间片

当前协程写了这句 runtime.Gosched() 后,会放弃安排给它的时间片

示例

runtime.Goexit() 停止协程

当前协程写了这句 runtime.Goexit() 后,会停止这个协程

示例

runtime.GOMAXPOCS(n) 设置运行线程的CPU个数

如标题,设置运行线程的CPU个数

示例