Consider the following Java class:
public class Foo
{
public static void doStuff()
{
// boring stuff here
}
}
Is it possible to access either the class literal Foo.class, or just the class name "Foo" from within a static method such as doStuff()? In a non-static method I would just call this.getClass(), but there is no this to use in a static method.
Edit: sorry this wasn't clear - I want to do this with explicitly using the class literal Foo.class.
Foo.classin a static method, but notthis.getClass(). This only reason this would be an issue is Java's quirky static method inheritance (seriously, static methods should not fall through to child classes... c# explicitly forbids this). – Powerlord Apr 15 '10 at 20:05