I'd like to know:
- Why can't static methods be overridden in Java?
- Can static methods be overloaded in Java?
|
I'd like to know:
|
|||||
|
|
Static methods can not be overridden in the exact sense of the word, but they can hide parent static methods In practice it means that que compiler will decide which method to execute at compile time, and not in runtime, as it does with overridden instance methods. For a neat example have a look here. And this is java documentation explaining the difference between overriding instance methods and hiding class (static) methods. |
||||
|
|
Static methods cannot be overridden because they are not dispatched on the object instance at runtime. The compiler decides which method gets called. This is why you get a compiler warning when you write
Static methods can be overloaded (meaning that you can have the same method name for several methods as long as they have different parameter types).
|
|||
|
|
Static methods can not be overridden because they are not part of the object's state. Rather, they belongs to the class (i.e they are class methods). It is ok to overload static (and final) methods. |
||||
|
|
|
Static methods can not be overridden because there is nothing to override, as they would be two different methods. For example
And yes static methods can be overloaded just like any other method. |
|||
|
|
|
Parent class methods which not are static are not a part of child class (even though they are accessible), so there is not question of overriding it. Even if you add another static method identical to the one in parent class, this method is unique and distinct from the identical one in the parent class. |
|||
|
|
|
If I m calling the method by using SubClass name MysubClass then subclass method display what it means static method can be overridden or not
|
||||
|
|
|
The very purpose of using the static method is to access the method of a class without creating an instance for it.It will make no sense if we override that method since they will be accessed by classname.method() |
|||
|
|
|
No,Static methods can't be overriden as it is part of a class rather than an object. But one can overload static method. |
|||
|
|