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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确实如此:
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.