Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

What's the difference between abstract and interface?

user-image
Question added by Kaleem Ullah Khan , Php/Web Developer , Incisivesoft
Date Posted: 2016/08/30
أمير أبولاوي
by أمير أبولاوي , Web-Developer/Back-end/Front-End , Xocialive

  1. An interface is a contract: the guy writing the interface says, "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 of the methods, which implies that the methods do not have a body. The interface can't do anything. It's just a pattern

  2. Abstract classes, unlike interfaces, are classes. They are more expensive to use because there is a look-up 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 have that in common, so fill in the blanks!".

For more calrifications, please visit this topic.

Shaheryar Akram
by Shaheryar Akram , Intern , Logicon

Interface is not a class unlike Abstract classes and can implement multiple interfaces. You are basically defining an empty entity which has definition of methods but no body. All methods are by default "public" and you can't define static methods.

Abstract classes may have methods predefined in it or just the details that have to be overridden. A class inherit only one abstract class

Take an example of an abstract class "Mammal" which has "Eat()", "Walk()", "FoodChart()" as methods. Now we know that all mammals eat and walk so why not predefine these methods? But mammals need not necessarily to have same foodchart so let the child class to override this method.

These are the major differences.

Mohamed saleh
by Mohamed saleh , PHP Laravel Developer , babeleye

we can say they are doing the same functionality both of them are working like a blue print for class design and functions and the class which extends or implements that class inherit the functionality and also i can say that the interface is the solution for language single inheritance which means that the class can extend only one class so to overcome that problem we use the interface to be able to implement more features for the class

danish Akbar
by danish Akbar , Software Engineer , northstar

in interface all method are by default abstract but abstract class can have implemented method  , a java class can implement multiple interface but can extend only one abstract class variables in interface are by default final

abstract classes may have implemantations for some of its member functions but interface can't have any implementation for its member.

abstract class can have access modifier but interface can't have

a class can only extend one abstract class but implement many interfaces at the same time

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.