java 中宏替换的替代方案

发布于 2024-10-16 09:15:51 字数 283 浏览 2 评论 0原文

我有一个日志语句,其中我总是使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

与酒说心事 2024-10-23 09:15:51

Java 没有宏,但您可以使代码变得更短:

Log.v(this, "Starting LocIden service...");

Log 类中:

public void v(Object object, String s)
{
    _v(object.getClass().getSimpleName(), s);
}

另一种方法可能是检查调用堆栈。

Java doesn't have macros but you can make your code much shorter:

Log.v(this, "Starting LocIden service...");

And in the Log class:

public void v(Object object, String s)
{
    _v(object.getClass().getSimpleName(), s);
}

Another approach could be to inspect the call stack.

雨轻弹 2024-10-23 09:15:51

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.

始终不够 2024-10-23 09:15:51

另一种方法是遵循 android 建议的日志功能。

Log.v(TAG, "Message");

其中 TAG 是类中的私有静态最终字符串。

Another approach is to follow what android suggests for its logging functionality.

Log.v(TAG, "Message");

where TAG is a private static final string in your class.

清晨说晚安 2024-10-23 09:15:51

使用适当的日志框架(例如 slf4j)。每个记录的类都有自己的记录器,因此无需将类名传递给 log 方法调用。

Logger logger = LoggerFactory.getLogger(this.getClass());

logger.debug("Starting service");
//...
logger.debug("Service started");

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.

Logger logger = LoggerFactory.getLogger(this.getClass());

logger.debug("Starting service");
//...
logger.debug("Service started");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文