What are the advantages of interfaces and abstract classes?

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:

abstract class Animal {
    abstract protected function eat();
    abstract protected function sleep();
    public function die() {
        // Do something to indicate dying
    }
}

In this case, we define eat() and sleep() as abstract because different types of animals (eg lion, bear, etc.) that will inherit from Animal 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 all Animal s should have, and 2.) define common behavior for Animal s. So, when you extend Animal , you won't have to rewrite the code for die() .

链接地址: http://www.djcxy.com/p/54250.html

上一篇: Java中抽象和多态性的优点

下一篇: 接口和抽象类的优点是什么?