Possible Duplicates:
purpose of interface in classes
What is the difference between an interface and abstract class?
Hi I am a php programmer. any body can explain what is the advantage of using interface and abstract class.
Possible Duplicates:
purpose of interface in classes
What is the difference between an interface and abstract class?
Hi I am a php programmer. any body can explain what is the advantage of using interface and abstract class.
The main advantage of an interface is that it allows you to define a protocol to be implemented for an object to have some behavior. For example, you could have a Comparable interface with a compare method for classes to implement, and every class that implements it would have a standardized method for comparison.
Abstract classes allow you to define a common base for several concrete classes. For example, let's say you wanted to define classes representing animals:
In this case, we define
eat()
andsleep()
as abstract because different types of animals (e.g. lion, bear, etc.) that will inherit fromAnimal
eat and sleep in different ways. But all animals die the same way (don't hold me to that), so we can define a common function for that. Using an abstract class helped us 1.) declare some common methods that allAnimal
s should have, and 2.) define common behavior forAnimal
s. So, when you extendAnimal
, you won't have to rewrite the code fordie()
.