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 {
}
Answer Posted / kvsravindrareddy
Normally abstract method should implement in the subclass,
otherwise application will give compilation error. If you want
to without compilation error, then subclass also make as a
abstract class, application will not give any compilation
error.
See the below sample code.
public abstract class AbstractExample {
public abstract void sampleMethod();
}
public abstract class AbstractExampleImple extends
AbstractExample {
}
Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
What are inbuilt functions?
What is the difference between heap and stack memory?
How can you write a loop indefinitely in java programming?
Explain about join() method?
What is the meaning of I ++ in java?
What is the constructor?
What is array in java?
What is the independent variable in an experiment?
How do I remove a character from a string in java?
How can you avoid serialization in child class if the base class is implementing the serializable interface?
What is string syntax?
What is slash r?
What is rule of accessibility in java?
How many inner classes can a class have?
Write a program to find the whether a number is an Armstrong number or not?