Is it possible to print the class name from within a static function?
e.g ...
public class foo { static void printName() { // Print the
Since static methods cannot be inherited the class name will be known to you when you write the method. Why not just hardcode it?