when to use abstract class and when to use interface?
Answer Posted / rod
the bowlingball example I put is when you combine the
abstract class ball with the interface bowlable .. a poor
example perhaps.. lets replace that with
a sock may implement a washable interface which can also be
implemented by cars, shirts, dishes... etc.. so why bother
with this. The reason is for future use as the system grows.
It is more likely that you will run into an object that
needs to be 'washed' then you can in fact call this method
without knowing the lower level details.
its more than just organising things that do or are acted
upon by the same conceptual action. It means that later you
can just use the method because the interface populates the
list of things you can choose from at code completion in the
editor ..for example.
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is the difference between heap and stack memory?
How many ways can you break a singleton class in java?
what is the constructor and how many types of constructors are used in java?
What is core java called?
Where can I find jdk in my computer?
What is method reference in java?
What do you know about java?
What is final access modifier in java?
Which of the following classes will have more memory allocated?
What is the technique adopted to create an immutable class?
How do you remove spaces in java?
What is a jit compiler?
what state does a thread enter when it terminates its processing? : Java thread
Explain about features of local inner class?
What is the difference between menuitem and checkboxmenu item?