Can i have abstract class with no abstract methods?
Answer Posted / mohan sahu
An abstract class without any abstract methods should be a
rare thing and you should always question your application
design if this case arises. Normally you should refactor to
use a concrete superclass in this scenario.
One specific case where abstract class may justifiably have
no abstract methods is where it partially implements an
interface, with the intention that its subclasses must
complete the interface. To take a slightly contrived
motoring analogy, a Chassis class may partially implement a
Vehicle interface and provide a set of core methods from
which a range of concrete Vehicle types are extended.
Chassis is not a viable implementation of a Vehicle in its
own right, so a concrete Car subclass would have to
implement interface methods for functional wheels, engine
and bodywork.
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
How many ways can we create singleton class?
How many bits are in a sentence?
Can we serialize singleton class?
Explain about main() method in java ?
What is the function of static in java?
what is difference betweem home interface and remote interface?
What is map in java?
What is the disadvantage of synchronization?
how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)
What classes of exceptions may be caught by a catch clause in java programming?
What is get () in java?
Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.
What is the use of put method?
Explain jdk, jre and jvm?
What does the three dot emoji mean?