What exactly is the difference between an interface and abstract class?
InterfacesAn interface is a contract: the guy writing the interface say "hey, I accept things looking that way", and the guy using the interface says "OK, the class I write looks that way". An interface is an empty shell, there are only the signatures (name / params / return type) of the methods. The methods do not contain anything. The interface can't do anything. It's just a pattern. E.G (pseudo code):
Implementing an interface consume very little CPU, because it's not a class, just a bunch of names, and therefor there is no expensive lookup to do. It's great when it matters such as in embedded devices. Abstract classesAbstract classes, unlike interfaces, are classes. There are more expensive to use because there is a lookup to do when you inherit from them. Abstract classes look a lot like interfaces, but they have something more : you can define a behavior for them. It's more about a guy saying "these classes should look like that, and they got that in common, so fill in the blanks!". e.g:
ImplementationWhile abstract classes and interfaces are supposed to be different concepts, the implementations make that statement sometimes untrue. Sometimes, they are not even what you think they are. In Java, this rule is strongly enforced, while in PHP, interfaces are abstract classes with no method declared. In Python, abstract classes are more a programming trick you can get from the ABC module and is actually using metaclasses, and therefore classes. And interfaces are more related to duck typing in this language and it's a mix between conventions and special methods that call descriptors (the __method__ methods). As usual with programming, there is theory, practice, and practice in another language :-) |
|||||||||||||||||
|
|
The key differences between an abstract class and an interface are:
|
|||||||
|
|
An explanation can be found here: http://www.developer.com/lang/php/article.php/3604111/PHP-5-OOP-Interfaces-Abstract-Classes-and-the-Adapter-Pattern.htm
Anyway I find this explanation of interfaces somewhat confusing. A more common definition is: An interface defines a contract that implementing classes must fulfill. An interface definition consists of signatures of public members, without any implementing code. |
|||||||||
|
|
An explanation can be found here
Interface VS Abstract Class in PHP |
|||
|
|
|
Lets work on this question again : First thing to let you know is that 1/1 and 1*1 results into same but does not mean that multiplication and division are same. obviously they hold some good relationship but mind you both are different. I will point-out main difference and rest is already explained : Abstract classes are useful for modelling a class hierarchy. At the first glance of any requirement we are partially clear on what exactly is to be build but we know what to build. And so your Abstract classes are you base classes. Interfaces are useful for letting other hierarchy or classes to know that what I am capable of doing. And when you say I am capable of something you must have that capacity and interfaces will mark it as compulsory for a class to implement the same. |
|||
|
|
|
Not really the answer to the original question, but once you have the answer to the difference between them, you will enter the when-to-use-each dilemma: http://stackoverflow.com/questions/1231985/when-to-use-interfaces-or-abstract-classes-when-to-use-both I've limited knowledge of oop, but seeing interfaces as an equivalent of an adjective in grammar has worked for me until now (correct me if this method is bogus!). For example, interface names are like attributes or cababilities you can give to a class, and a class can have many of them: ISerializable, ICountable, IList, ICacheable, IHappy, ... |
|||
|
|
|
When you want to provide polymorphic behaviour in an inheritence heirarchy use abstract classes. When you want polymorphic behaviour for classes which are completely unrelated use an interface. |
|||
|
|
|
some important difference: Table Structure:
In paragraph: 1.Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default behavior. 2.Variables declared in a Java interface is by default final. An abstract class may contain non-final variables. 3.Members of a Java interface are public by default. A Java abstract class can have the usual flavors of class members like private, protected, etc.. 4.Java interface should be implemented using keyword “implements”; A Java abstract class should be extended using keyword “extends”. 5.An interface can extend another Java interface only, an abstract class can extend another Java class and implement multiple Java interfaces. 6.A Java class can implement multiple interfaces but it can extend only one abstract class. 7.Interface is absolutely abstract and cannot be instantiated; A Java abstract class also cannot be instantiated, but can be invoked if a main() exists. 8.In comparison with java abstract classes, java interfaces are slow as it requires extra indirection. |
||||
|
|
protected by Stefano Borini Mar 27 at 18:20
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
