I am a fan of static metaprogramming in C++. I know Java now has generics. Does this mean that static metaprogramming (i.e., compile-time program execution) is possible in Java? If so, can anyone recommend any good resources where one can learn more about it?
|
1
|
|
|
|
|
|
No, this is not possible. Generics are not as powerful as templates. For instance, a template argument can be a user-defined type, a primitive type, or a value; but a generic template argument can only be |
||
|
|
|
|
In a very reduced sense, maybe? http://michid.wordpress.com/2008/08/13/type-safe-builder-pattern-in-java/ |
||
|
|
|
|
Take a look at Clojure. It's a LISP with Macros (meta-programming) that runs on the JVM and is very interoperable with Java. |
||
|
|
|
|
No. Even more, generic types are erased to their upper bound by the compiler, so you cannot create a new instance of a generic type T at runtime. The best way to do metaprogamming in Java is to circumvent the type erasure and hand in the |
||
|
|
|
|
No, generics in Java is purely a way to avoid casting of Object. |
||
|
|
