+ 4
How can i Overload or Override static methods in java ?
7 ответов
+ 3
static methods cannot be Overriden in Java. but you can overload them
+ 3
class A {
        static void method() {}
}
class B extends A{
         @Override
          static void method() {}
}
zemiak if this is what you mean it gives a compilation error
+ 1
practically you can override static with other static method, but they call it 'hiding' then
+ 1
Mind To Machine 💻🕆 try it without annotation
class A {
    static void method() { 
        System.out.println("A");
    }
    static void method2() { 
        System.out.println("A");
    }
    
}
class B extends A {
    static void method() { 
        System.out.println("B");
    }
    public static void main(String args[]){
        B.method();    //B
        B.method2();  //A
    }
}
+ 1
zemiak static methods are inherited by subclass but cannot be overriding. If you define a static method in subclass with same signature as superclass its just a method belonging to subclass not an overriden one.
your code example shows inheritance not overriding.
also
A a = new B();
a.method(); // method of A class is executed
This is because static methods are inherited but not Polymorphic
+ 1
give me example of overriding and we can compare it from programer practical view
+ 1
lesson on overriding 
https://www.tutorialspoint.com/java/java_overriding.htm



