golang获取goroutine ID

2019-08-29  本文已影响0人  蔡欣圻

golang本身不提供获取goroutineID的接口,如果要获取goroutineID可以使用下面的方法

    package main

import (
    "bytes"
    "fmt"
    "runtime"
    "strconv"
)

func main() {
    fmt.Printf("goroutine ID is:%d\n", getGID())
}

func getGID() uint64 {
    b := make([]byte, 64)
    b = b[:runtime.Stack(b, false)]
    b = bytes.TrimPrefix(b, []byte("goroutine"))
    b = b[:bytes.IndexByte(b, ' ')]
    n, _ := strconv.ParseUint(string(b), 10, 64)
    return n
}
上一篇下一篇

猜你喜欢

热点阅读