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 is the meaning of 3 dots in java?
What is difference between overloading and overriding in java?
What do you mean by aggregation?
How do you join strings in java?
what is synchronization? : Java thread
Should you use singleton pattern?
What is Mutex (Mutual Exclusion Object) ?
what methods would you overwrite in java.lang.object class?
What does microservices mean?
How to perform merge sort in java?
Why do we override tostring method in java?
what r advatages of websphere? & how to deploy?
What is difference between string and stringbuffer?
What is space character in java?
What is the use of http-tunneling in rmi?