can a static method be overridden
Answer Posted / aswini de
public class Test extends Test2{
public static void main(String args[]){
String str="";
int b=Test.cal(4);
System.out.println(b);
Test t =new Test();
t.displayX();
}
public static int cal(int a){
int b=a*a;
return b;
}
}
public class Test2 {
public static void main(String args[]){
}
public static int cal(int a,int b){
int c=a*b;
System.out.println("IN Super orerriden
methods:");
return c;
}
public void displayX(){
System.out.println("HI i am in Super");
}
}
my Sub Class is Test extends Test2 Class
Common static method is cal()
its run properly. No compile error , NO runtime error
| Is This Answer Correct ? | 4 Yes | 38 No |
Post New Answer View All Answers
difference between ejb,struts,hibernate,spring and jsp
What must a class do to implement an interface?
Is the infobus client side only?
Why does the tag url-encode javascript and mailto links?
the same information whether it will connect to the database or it will be used previous information?
Can I use javascript to submit a form?
Explain ioc concept?
When a thread blocks on i/o?
What are the different methods of identifying an object?
what is Activation Instantinator?
What is the difference between system.out ,system.err and system.in?
what is a non-repeatable read?
What restrictions are placed on the values of each case of a switch statement?
Explain the advantages and disadvantages of detached objects.
What is the purpose of the notify() method?