What is the difference between Abstract Class and Interface
Answer Posted / vikrant
Nothing stops you using interfaces and abstract classes
interchangeably. The difference is in the ideology where to
use it.
An abstract class is to be used when one needs to create a
hierarchy. e.g. Poodle, Pointer and Chihuahua are all breeds
breeds of dogs, they have some common characteristics as
dogs and some special characteristics of its breed. so all
breeds (Poodle, Pointer and Chihuahua classes) will inherit
from the Dog class.
Interface on the other hand is just a contract. The
implementing classes need not be related. Say a 3-D figure.
Sphere, Cone, Cylinder are all 3-D shapes they have nothing
in common apart from being 3-D figures. Each will have their
own equation for calculating area, perimeter, volume. All
need to specify in Shapes interface is that the implementing
class must be able to calculate area, perimeter, volume.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What do you know about the garbage collector in java?
What will happen if there is a default method conflict as mentioned above and we have specified the same signature method in the base class instead of overriding in the existing class ?
Is string a wrapper class?
How do you convert an int to a string in java?
What are mutable classes?
What is the main advantage of passing argument by reference?
When throw keyword is used?
What is the super void?
Is array passed by reference in java?
What is java dot?
What is a linkedhashmap java?
What does sizeof return?
Is map ordered in java?
How does singleton class work?
What are kinds of processors?