编程语言
首页 > 编程语言> > java-Scala,Maven和预处理器

java-Scala,Maven和预处理器

作者:互联网

我知道反对Java中的预处理器和宏的所有哲学观点.我不同意仅仅因为某些人可能滥用一种语言功能,就应该将其排除在所有人之外.

我想在Java和Scala代码中包含__FILE__和__LINE__宏,以进行有效的日志记录.由于对运行时性能的影响,对Exception的任何使用都是不可接受的.那些认为可以在“生产代码”中关闭日志记录的人应该留意Brian Kernighan的建议:

Removing the error messages “now that the program is working” is like wearing a parachute on the ground, but taking it off once you’re in the air.

这些宏是否有可能融入到语言中?如果没有,有什么办法可以使用Maven运行像m4这样的预处理器吗?

谢谢.

解决方法:

更新
@ralph
嗯,这是2年前的一个问题,但是由于我对__LINE__和__FILE__的需求相同,而您提到了SCALA.这是我使用Scala宏(自v2.10.0-RC1起)的一些想法

def $currentPosition:String = macro _currentPosition;
def _currentPosition(c:Context):c.Expr[String]={ import c.universe._;
  val pos = c.enclosingPosition;
  c.Expr(Literal(Constant(
    s"${pos.source.path}: line ${pos.line}, column ${pos.column}" )))
}

在编译时对宏进行评估,$currentPosition替换为描述其在源代码中位置的文字字符串.例如,在第13行的println中,它显示:

/sandbox/tmp_juno_workspace2/LogMacro_Test/src/test/Trial.scala: line 13, column 15

我还没有广泛地使用这些机制,但是通过进行调整,可以开发他需要的日志记录功能(我应该补充一点,编写宏可能很困难-对我来说!).

标签:preprocessor,java,scala,maven-2,m4
来源: https://codeday.me/bug/20191011/1888985.html