英文:
Is there a way to get the source code filename and line number in Go?
问题
在C/C++中,你可以使用__FILE__
和__LINE__
来获取当前文件和行号。
Go语言提供类似的功能吗?
英文:
In C/C++ you can use __FILE__
and __LINE__
to get access to the current file and line number.
Does Go provide something similar?
答案1
得分: 8
确实可以:
http://golang.org/pkg/runtime/#Caller
runtime.Caller
也可以用来获取调用函数的文件名/行号。
英文:
Indeed it does:
http://golang.org/pkg/runtime/#Caller
runtime.Caller
can also be used to get the file name/line number of calling functions, too.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论