Skip to content

Latest commit

 

History

History

Day_19_AbstractClassMethod

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Abstract Classes and Methods in Java

Java is a popular programming language known for its simplicity, portability, and strong object-oriented features. Among these features, abstraction plays a crucial role in simplifying complex systems by hiding the unnecessary details and showing only the essentials. In this guide, we'll explore abstract classes and methods in Java, with easy explanations and examples.

1. What is Abstraction in Java?

1.1. Understanding Abstraction

Abstraction in programming is like focusing on what something does rather than how it does it. Imagine you're driving a car. You know that pressing the gas pedal makes the car move, but you don't need to know how the engine works to make it happen. That's abstraction!

In Java, abstraction is used to hide the complex details of code and show only the important parts. This makes the code easier to manage and understand.

1.2. Why is Abstraction Important?

Abstraction helps in:

  • Simplifying Complex Systems: By hiding the details, we can focus on the big picture.
  • Reusing Code: Abstract classes can be used as a blueprint for other classes.
  • Improving Maintainability: Changes in abstract classes automatically affect all related subclasses.

2. What is an Abstract Class?

2.1. The Basics of Abstract Classes

An abstract class in Java is like a blueprint that other classes can use. You cannot create objects from an abstract class directly. Instead, other classes extend the abstract class and provide their own implementations of its methods.

Think of an abstract class as a template. It has some parts defined, but other parts are left blank for the subclasses to fill in.

2.2. Simple Example of an Abstract Class

Let’s say we’re building a program for different types of vehicles.

// codeswithpankaj.com
abstract class Vehicle {
    // Abstract method (no body, must be implemented by subclasses)
    abstract void startEngine();

    // Regular method
    void stopEngine() {
        System.out.println("Engine stopped.");
    }
}

class Car extends Vehicle {
    // Providing the implementation of the abstract method
    void startEngine() {
        System.out.println("Car engine started.");
    }
}

class Bike extends Vehicle {
    // Providing the implementation of the abstract method
    void startEngine() {
        System.out.println("Bike engine started.");
    }
}

Explanation:

  • Vehicle is an abstract class with one abstract method startEngine() and one regular method stopEngine().
  • The Car and Bike classes extend Vehicle and provide their own implementation of startEngine().

2.3. Why Use Abstract Classes?

Abstract classes are useful when you have a group of related classes that should share some common features but also have their unique behavior. For example, all vehicles have engines, but the way a car starts its engine might be different from the way a bike does.


3. What is an Abstract Method?

3.1. Understanding Abstract Methods

An abstract method is like a placeholder for a method. It has a name, but it doesn't have any code. This method must be implemented by any subclass that extends the abstract class.

3.2. Simple Example of an Abstract Method

Let’s continue with our vehicle example.

// codeswithpankaj.com
abstract class Vehicle {
    // Abstract method (no body)
    abstract void startEngine();
}

class Car extends Vehicle {
    // Implementing the abstract method
    void startEngine() {
        System.out.println("Car engine started.");
    }
}

Explanation:

  • The startEngine() method in the Vehicle class doesn’t have any code because it’s abstract.
  • The Car class provides the code for the startEngine() method.

3.3. Why Use Abstract Methods?

Abstract methods force the subclasses to provide specific implementations. This is useful when you know that every subclass should have a particular method, but you want each one to do something different with it.


4. Practical Examples of Abstract Classes and Methods

4.1. Example: Employee Management System

Let’s say you’re creating a system to manage different types of employees. You might have full-time and part-time employees, and you want to calculate their salaries differently.

// codeswithpankaj.com
abstract class Employee {
    String name;
    int id;

    // Abstract method (no body)
    abstract double calculateSalary();

    // Regular method
    void displayDetails() {
        System.out.println("Employee ID: " + id);
        System.out.println("Employee Name: " + name);
    }
}

class FullTimeEmployee extends Employee {
    double annualSalary;

    FullTimeEmployee(String name, int id, double annualSalary) {
        this.name = name;
        this.id = id;
        this.annualSalary = annualSalary;
    }

    // Implementing the abstract method
    double calculateSalary() {
        return annualSalary / 12; // Monthly salary
    }
}

class PartTimeEmployee extends Employee {
    double hourlyRate;
    int hoursWorked;

    PartTimeEmployee(String name, int id, double hourlyRate, int hoursWorked) {
        this.name = name;
        this.id = id;
        this.hourlyRate = hourlyRate;
        this.hoursWorked = hoursWorked;
    }

    // Implementing the abstract method
    double calculateSalary() {
        return hourlyRate * hoursWorked;
    }
}

Explanation:

  • The Employee abstract class has an abstract method calculateSalary() that must be implemented by any subclass.
  • FullTimeEmployee and PartTimeEmployee classes extend Employee and provide specific implementations of calculateSalary() based on how their salaries are calculated.

4.2. Example: Shape Drawing Program

Suppose you are writing a program to draw different shapes. Each shape will have a different way to draw itself.

// codeswithpankaj.com
abstract class Shape {
    // Abstract method (no body)
    abstract void draw();
}

class Circle extends Shape {
    // Implementing the abstract method
    void draw() {
        System.out.println("Drawing a circle.");
    }
}

class Rectangle extends Shape {
    // Implementing the abstract method
    void draw() {
        System.out.println("Drawing a rectangle.");
    }
}

Explanation:

  • The Shape abstract class has an abstract method draw().
  • Circle and Rectangle classes provide their own ways of drawing themselves by implementing the draw() method.

5. Advanced Features of Abstract Classes

5.1. Constructors in Abstract Classes

You can have constructors in abstract classes, but you can’t create objects directly from them. The constructor in an abstract class is called when an object of a subclass is created.

Example:

// codeswithpankaj.com
abstract class Animal {
    String name;

    Animal(String name) {
        this.name = name;
        System.out.println("Animal's name is: " + name);
    }

    abstract void sound();
}

class Dog extends Animal {
    Dog(String name) {
        super(name); // Call the constructor of the abstract class
    }

    void sound() {
        System.out.println("Bark");
    }
}

Explanation:

  • The Animal abstract class has a constructor that initializes the name of the animal.
  • The Dog class extends Animal and calls its constructor using super().

5.2. Static and Final Methods in Abstract Classes

Abstract classes can have static and final methods, but these methods cannot be abstract themselves.

Example:

// codeswithpankaj.com
abstract class Utility {
    static void logMessage(String message) {
        System.out.println("Log: " + message);
    }

    final void printMessage(String message) {
        System.out.println("Message: " + message);
    }

    abstract void executeTask();
}

class Task extends Utility {
    void executeTask() {
        System.out.println("Task executed.");
    }
}

Explanation:

  • logMessage() is a static method, meaning it belongs to the class rather than any instance.
  • printMessage() is a final method, meaning it cannot be overridden in any subclass.
  • executeTask() is an abstract method that must be implemented by subclasses.

6. Abstract Classes vs Interfaces

6.1. Differences Between Abstract Classes and Interfaces

Both abstract classes and interfaces are used to achieve abstraction in Java, but they have some key differences.

Feature Abstract Class Interface
Method Implementation Can have both abstract and regular methods Only abstract methods (prior to Java 8)
Multiple Inheritance A class can extend only one abstract class A class can implement multiple interfaces
Constructors Can have constructors Cannot have constructors
Access Modifiers Can have protected and public methods All methods are public by default

Example:

// codeswithpankaj.com
abstract class Animal {
    abstract void sound();
}

interface Movable {
    void move(); // Abstract method in an interface
}

class Dog extends Animal implements Movable {
    void sound() {
        System.out.println("Bark");
   

 }

    public void move() {
        System.out.println("Dog is moving.");
    }
}

Explanation:

  • Dog class extends the abstract class Animal and implements the Movable interface, providing specific implementations for sound() and move().

6.2. When to Use Abstract Classes vs Interfaces

  • Use an abstract class when you want to share code among several closely related classes.
  • Use an interface when you want to define a contract for classes without forcing them to have a common ancestor.

7. Conclusion

Abstract classes and methods are fundamental concepts in Java that allow you to design flexible and reusable code. By understanding how and when to use abstract classes, you can create better-organized programs that are easier to maintain and extend.

Remember:

  • Abstract classes cannot be instantiated directly.
  • Abstract methods are placeholders that must be implemented by subclasses.
  • Use abstract classes when you have a group of related classes that share some common features.

I hope this guide has made the concept of abstract classes and methods in Java clearer. Practice these concepts with simple examples, and soon you'll find them easy to use in your own Java programs!


This guide is intended to be accessible and straightforward, providing clear explanations and examples to help students grasp the concepts of abstract classes and methods in Java. If you're looking for further exploration or have specific questions, feel free to reach out or explore more resources. Happy coding with codeswithpankaj.com!