Can static methods be overridden?
Answer Posted / durga
We can't override static methods,becoz static methods are loaded at class loading time,so it is class level.but we overload static methods.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you get length in java?
Is it possible to compare various strings with the help of == operator?
What is the common usage of serialization?
What is the difference between an array and an array list?
What is an iterator interface in java programming?
What are the types of java languages?
Write code to implement bubble sort in java?
Name some classes present in java.util.regex package.
Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.
Explain working of call by reference function invoking.
What is a "pure virtual" member function?
What is lossy conversion in java?
What is Java Reflection API? Why it’s so important to have?
If two threads have same priority which thread will be executed first ?
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread