I have
public class A {
static X s_x = new X(A.class);
}
and
public class B {
static X s_x = new X(B.class);
}
and so on for many classes without any special relationship or commonality. What I really wish I could do is have s_x initialized in a superclass, but with descendant-class-specific code; this is impossible since static code is not overridable. So, I want to at least make my copy-paste easier. I want a magic expression which evaluates to the Class object, i.e. to write:
static X s_x = new X(/* magic expression here */);
where the magic expression is the same regardless of the class in which I declare my X in, but does the same as the examples above. Second-best option would be a static method to the same effect.
Notes:
- Java 6 if possible.
- This question is not (necessarily) about logging...
Aand classBhave some form of relationship? – Buhake Sindi Jan 17 at 12:29