What is difference overloading and overriding?
No Answer is Posted For this Question
Be the First to Post Answer
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
What is the difference between choice and list?
What is parameter example?
Explain about varargs in java?
What is substring of a string?
Hi Friends, can you give difference between extending thread class and implementing runnable interface.
What are the OOPS concepts in Java ?
How do u pass data from one jsp to another jsp?
Is java a digit method?
Why we use multi threading instead of multiprocessing?
Is oracle charging for java?
What is the effect of keeping a constructor private?