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
abstract static void bar2(); //<-- this isn't why?
}
|
The question is in Java why can't I define an abstract static method? for example
|
||||
|
|
|
Because "abstract" means: "Implements no functionality", and "static" means: "There is functionality even if you don't have an object instance". And that's a logical contradiction. |
|||||||||||||||||||||
|
|
Poor language design. It would be much more effective to call directly a static abstract method than creating an instance just for using that abstract method. Especially true when using an abstract class as a workaround for enum inability to extend, which is another poor design example. Hope they solve those limitations in a next release. |
|||
|
|
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. |
|||||||||||||||||||||
|
|
The In Java, a Since static members cannot be overriden in a subclass, the As an aside - other languages do support static inheritance, just like instance inheritance. From a syntax perspective, those languages usually require the class name to be included in the statement. For example, in Java, assuming you are writing code in ClassA, these are equivalent statements (if methodA() is a static method, and there is no instance method with the same signature):
and
In SmallTalk, the class name is not optional, so the syntax is (note that SmallTalk does not use the . to separate the "subject" and the "verb", but instead uses it as the statemend terminator):
Because the class name is always required, the correct "version" of the method can always be determined by traversing the class hierarchy. For what it's worth, I do occasionally miss |
|||
|
|
Though the language is different (but the basic idea is same), you can get the "why" here |
|||
|
|
|
Here is an implemtation on how it could be done: Look for getRequest, and getRequestImpl ... setInstance can be called to alter the implementation before the call is made.
|
||||
|
|
|
A static method can be called without an instance of the class. In your example you can call foo.bar2(), but not foo.bar(), because for bar you need an instance. Following code would work:
If you call a static method, it will be executed always the same code. In the above example, even if you redefine bar2 in ImplementsFoo, a call to var.bar2() would execute foo.bar2(). If bar2 now has no implementation (that's what abstract means), you can call a method without implementation. That's very harmful. |
|||||||||
|
|
||||
|
|
|
because if a class extends an abstract class then is has to override abstract methods and that is mandatory and since static methods are class methods resolved at compile time whereas overridden methods are instance methods resolved at runtime and following dynamicpolymorphism |
|||
|
|
|
I also asked the same question , here is why Since Abstract class says, it will not give implementation and allow subclass to give it so Subclass has to override the methods of Superclass , RULE NO 1 - A static method cannot be overridden Because static members and methods are compile time elements , that is why Overloading(Compile time Polymorphism) of static methods are allowed rather then Overriding (Runtime Polymorphism) So , they cant be Abstract . There is no thing like abstract static <--- Not allowed in Java Universe |
|||
|
|