Golang runtime运行时

简要概念

  • Gosched:让当前线程让出 cpu 以让其它线程运行,它不会挂起当前线程,因此当前线程未来会继续执行
  • NumCPU:返回当前系统的 CPU 核数量
  • GOMAXPROCS:设置最大的可同时使用的 CPU 核数
  • Goexit:退出当前 goroutine(但是defer语句会照常执行)
  • NumGoroutine:返回正在执行和排队的任务总数
  • GOOS:目标操作系统

NumCPU NumGoroutine GOOS

func runtimeInfo()  {
    runtime.GOMAXPROCS(1)
    fmt.Println(runtime.NumCPU()) // 返回当前cpu核心数
    fmt.Println(runtime.NumGoroutine()) // 返回正在执行和排队的任务数
    fmt.Println(runtime.GOOS) // 返回当前操作系统
}

Gosched

func runtimeGosched()  {
    go func (s string)  {
        for i := 0; i < 4; i ++{
            fmt.Println(s)
        }
    }("world")

    for i := 0; i < 4; i ++{
        runtime.Gosched()
        fmt.Println("hello")
    }
}

Goexit

func runtimeGoexit()  {
    go func ()  {
        fmt.Println(111)
        defer fmt.Println("A defer")
        func ()  {
            defer fmt.Println("B.defer")
            runtime.Goexit()
            defer fmt.Println("C.defer")
            fmt.Println("B")
        }()
        fmt.Println("A")
    }()
    for{
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值