The question is in Java why can\'t I define an abstract static method? for example
abstract class foo { abstract void bar( ); // <-- this is ok ab
Because 'abstract' means the method is meant to be overridden and one can't override 'static' methods.