java 中宏替换的替代方案
我有一个日志语句,其中我总是使用 this.getClass().getSimpleName() 作为第一个参数。 我想将其放入某种宏常量中,并在我的所有日志语句中使用它。 但我了解到 Java 没有像 C++ 那样简单的机制。
在 Java 中实现此类功能的最佳方法是什么?
我的示例日志语句(来自 Android)如下。
Log.v(this.getClass().getSimpleName(),"Starting LocIden service...");
I have a log statement in which I always use this.getClass().getSimpleName()
as the 1st parameter.
I would like to put this in some sort of macro constant and use that in all my log statements.
But I learned that Java has no such simple mechanism unlike say C++.
What is the best way to achieve this sort of functionality in Java?
My example log statements (from Android) is as follows..
Log.v(this.getClass().getSimpleName(),"Starting LocIden service...");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Java 没有宏,但您可以使代码变得更短:
在
Log
类中:另一种方法可能是检查调用堆栈。
Java doesn't have macros but you can make your code much shorter:
And in the
Log
class:Another approach could be to inspect the call stack.
Karthik,大多数日志记录工具都允许您指定输出的格式,其中一个参数是类名,它使用 Mark 提到的方法(堆栈检查),
例如,在 log4j 中,参数是 %C 来引用类名。
Karthik, most logging tools allow you to specify the format of the output and one of the parameters is the class name, which uses the method Mark mentioned (stack inspection)
For example, in log4j the parameter is %C to reference a class name.
另一种方法是遵循 android 建议的日志功能。
其中
TAG
是类中的私有静态最终字符串。Another approach is to follow what android suggests for its logging functionality.
where
TAG
is a private static final string in your class.使用适当的日志框架(例如 slf4j)。每个记录的类都有自己的记录器,因此无需将类名传递给 log 方法调用。
Use a proper logging framework (e.g. slf4j). Each class that logs has its own logger, so there's no need to pass the class name to the log method call.