In case of static method overriding ..I have developed this below code
class Ab {
static void getF() {
System.out.println("I am saral");
}
}
class Ham extends Ab {
static void getF() {
System.out.println("I am saral saxena");
}
public static void main(String[] args) {
// Ham h = new Ham();
// h.getF(); //Ham
Ab a = new Ham();
a.getF(); // Ab class
}
}
Now my query is that in case of static method overriding when i am using polymorphic behavior, Ab a = new Ham(); at this stage I am still getting the method getF(); of class Ab, please advise.