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
What is the static field modifier?
How do you check if a character in a string is a digit or letter?
If we allocate the memory using 'new' & de-allocated using 'free' then what will happen?
How do you bind variables?
Which is dependent variable?
What is a methodologist?
Give me an example of array and linked list? Where they can be used?
why Interface used?
What happens when a thread cannot acquire a lock on an object in java programming?
Why is it important to initialize a variable?
What is parsing and its types?
Which collection is sorted in java?
Why set is used in java?
Explain reverse a linked list iterative solution in java?
Is alive and join method in java?