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
You can't override a static method, so making it abstract would be meaningless. Moreover, a static method in an abstract class would belong to that class, and not the overriding class, so couldn't be used anyway.