Search code examples
javascalajava-8

Similar to Scala macro in Java


Anybody know if in Java there´s something like Scala macro to interact with the javac in compilation time. Reflection it´s quite powerful, but only works on runtime.


Solution

  • In Java there are no macros like in Scala but there is kind of macros like in C++.

    Can I have macros in Java source files

    Macros in Java?

    Using scala macro from java

    There are also