[注意:Go
1.7+建议使用
runtime.Callersframes代替
runtime.FuncForPC;
包运行时是您的朋友在这里:
func 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 %sn", file, line, f.Name())}


