套餐
runtime是你的朋友:
原文链接:https://www.f2er.com/go/187064.htmlfunc trace() { pc := make([]uintptr,10) // at least 1 entry needed runtime.Callers(2,pc) f := runtime.FuncForPC(pc[0]) file,line := f.FileLine(pc[0]) fmt.Printf("%s:%d %s\n",file,line,f.Name()) }