What is a method declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Can java list be null?
what is Hashmap & Hashtable wirh example?
Is 0 true or is 1 true?
In Java, what’s the purpose of static methods and static variables?
What is a platform?
What is java algorithm?
Explain the difference between runnable and callable interface in java?
How finally used under exception handling?
What is meant by singleton class?
What is the use of static methods?
Differentiate between stringbuffer and string?
I Have a class abstract with one abstract method, so that method should override in the subclass, but i dont want to override, if i am not override what will happen? If compilation will occur then i dont want to give compilation error, then what we need to do??? See the sample program. public abstract class AbstractExample { public abstract void sampleMethod(); } public class AbstractExampleImple extends AbstractExample { }