What is the difference between Abstract and Interface?

Answer Posted / code project main se teepa hai

An interface cannot provide any code, just the signature.


An abstract class can provide complete, default code and/or
just the details that have to be overridden.
Access Modfiers An interface cannot have access modifiers
for the subs, functions, properties etc everything is
assumed as public An abstract class can contain access
modifiers for the subs, functions, properties

Core VS Peripheral


Interfaces are used to define the peripheral abilities of a
class. In other words both Human and Vehicle can inherit
from a IMovable interface.


An abstract class defines the core identity of a class and
there it is used for objects of the same type.

Homogeneity


If various implementations only share method signatures then
it is better to use Interfaces.


If various implementations are of the same kind and use
common behaviour or status then abstract class is better to use.

Speed


Requires more time to find the actual method in the
corresponding classes.


Fast

Adding functionality (Versioning)


If we add a new method to an Interface then we have to track
down all the implementations of the interface and define
implementation for the new method.


If we add a new method to an abstract class then we have the
option of providing default implementation and therefore all
the existing code might work properly.
Fields and Constants No fields can be defined in
interfaces An abstract class can have fields and constrants
defined

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between sqlclient oledb and providers?

502


Why References are stored on heap and variables on stack?

511


Are tuples immutable c#?

508


What are the access modifiers in c#?

503


Why do we use lambda expression in c#?

506






What is the difference between decimal and integer?

526


What are properties in C#?

544


What is the usage of transponders?

551


Explain how to use an extender provider in the project.

491


List down the commonly used types of exceptions in .net

496


Can dictionary have duplicate keys c#?

505


What is reflection c#?

472


What is type safe in c#?

493


What is the difference between continue and break statement?

523


Can a class be protected in c#?

493