Interface vs Abstract Class in Java: What's the Difference?

What is Interface?

The interface is a blueprint that can be used to implement a class. The interface does not contain any concrete methods (methods that have code). All the methods of an interface are abstract methods.
An interface cannot be instantiated. However, classes that implement interfaces can be instantiated. Interfaces never contain instance variables but, they can contain public static final variables (i.e., constant class variables)

What Is Abstract Class?

A class which has the abstract keyword in its declaration is called abstract class. Abstract classes should have at least one abstract method. , i.e., methods without a body. It can have multiple concrete methods.
Abstract classes allow you to create blueprints for concrete classes. But the inheriting class should implement the abstract method.
Abstract classes cannot be instantiated.
Important Reasons For Using Interfaces
  • Interfaces are used to achieve abstraction.
  • Designed to support dynamic method resolution at run time
  • It helps you to achieve loose coupling.
  • Allows you to separate the definition of a method from the inheritance hierarchy
Important Reasons For Using Abstract Class
  • Abstract classes offer default functionality for the subclasses.
  • Provides a template for future specific classes
  • Helps you to define a common interface for its subclasses
  • Abstract class allows code reusability.

Interface Vs. Abstract Class

ParametersInterfaceAbstract class
SpeedSlowFast
Multiple InheritancesImplement several InterfacesOnly one abstract class
StructureAbstract methodsAbstract & concrete methods
When to useFuture enhancementTo avoid independence
Inheritance/ ImplementationA Class can implement multiple interfacesThe class can inherit only one Abstract Class
Default ImplementationWhile adding new stuff to the interface, it is a nightmare to find all the implementors and implement newly defined stuff.In case of Abstract Class, you can take advantage of the default implementation.
Access ModifiersThe interface does not have access modifiers. Everything defined inside the interface is assumed public modifier.Abstract Class can have an access modifier.
When to useIt is better to use interface when various implementations share only method signature. Polymorphic hierarchy of value types.It should be used when various implementations of the same kind share a common behavior.
Data fieldsthe interface cannot contain data fields.the class can have data fields.
Multiple Inheritance DefaultA class may implement numerous interfaces.A class inherits only one abstract class.
ImplementationAn interface is abstract so that it can't provide any code.An abstract class can give complete, default code which should be overridden.
Use of Access modifiersYou cannot use access modifiers for the method, properties, etc.You can use an abstract class which contains access modifiers.
UsageInterfaces help to define the peripheral abilities of a class.An abstract class defines the identity of a class.
Defined fieldsNo fields can be definedAn abstract class allows you to define both fields and constants
InheritanceAn interface can inherit multiple interfaces but cannot inherit a class.An abstract class can inherit a class and multiple interfaces.
Constructor or destructorsAn interface cannot declare constructors or destructors.An abstract class can declare constructors and destructors.
Limit of ExtensionsIt can extend any number of interfaces.It can extend only one class or one abstract class at a time.
Abstract keywordIn an abstract interface keyword, is optional for declaring a method as an abstract.In an abstract class, the abstract keyword is compulsory for declaring a method as an abstract.
Class typeAn interface can have only public abstract methods.An abstract class has protected and public abstract methods.

Sample code for Interface and Abstract Class in Java

Following is sample code to create an interface and abstract class in Java
Interface Syntax
interface name{
//methods
}
Java Interface Example:
interface Pet {
    public void test();
}
class Dog implements Pet {
    public void test() {
        System.out.println("Interface Method Implemented");
    }
    public static void main(String args[]) {
        Pet p = new Dog();
        p.test();
    }
}
Abstract Class Syntax
abstract class name{
    // code
}
Abstract class example:
abstract class Shape {
    int b = 20;
    abstract public void calculateArea();
}

public class Rectangle extends Shape {
    public static void main(String args[]) {
        Rectangle obj = new Rectangle();
        obj.b = 200;
        obj.calculateArea();
    }
    public void calculateArea() {
        System.out.println("Area is " + (obj.b * obj.b));
    }
}

No comments:

Post a Comment