给定一个函数,可以得到它的名字吗?说:
func foo() {
}
func GetFunctionName(i interface{}) string {
// ...
}
func main() {
// Will print "name: foo"
fmt.Println("name:", GetFunctionName(foo))
}
有人告诉我runtime.FuncForPC会有所帮助,但我不明白如何使用它。
给定一个函数,可以得到它的名字吗?说:
func foo() {
}
func GetFunctionName(i interface{}) string {
// ...
}
func main() {
// Will print "name: foo"
fmt.Println("name:", GetFunctionName(foo))
}
有人告诉我runtime.FuncForPC会有所帮助,但我不明白如何使用它。
Answers:
很抱歉回答我自己的问题,但我找到了解决方案:
package main
import (
"fmt"
"reflect"
"runtime"
)
func foo() {
}
func GetFunctionName(i interface{}) string {
return runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
}
func main() {
// This will print "name: main.foo"
fmt.Println("name:", GetFunctionName(foo))
}
GetFunctionName
是否可能为不同的函数返回相同的名称?
由于它记录了文件名和行号,因此不完全是您想要的,但这是我使用“运行时”程序包在Tideland Common Go库(http://tideland-cgl.googlecode.com/)中进行的操作:
// Debug prints a debug information to the log with file and line.
func Debug(format string, a ...interface{}) {
_, file, line, _ := runtime.Caller(1)
info := fmt.Sprintf(format, a...)
log.Printf("[cgl] debug %s:%d %v", file, line, info)