What is the point of using abstract methods?

Say you have a three printers that you would need to write a driver for, Lexmark, Canon, and HP.
All three printers will have the print() and getSystemResource() methods.
However, only print() will be different for each printer. getSystemResource() remains the same throughout the three printers. You also have another concern, you would like to apply polymorphism.
So since getSystemResource() is the same for all three printers, so this can be pushed up to the super class to be implemented, in Java, this can be done via making this abstract in the super class, and in making a method abstract in a super class, the class itself needs to be abstract as well.
public abstract class Printer{
  public void getSystemResource(){
     // real implementation of getting system resources
  }

  public abstract void print();
}

public class Canon extends Printer{
  public void print(){
    // here you will provide the implementation of print pertaining to Canon
  }
}

public class HP extends Printer{
  public void print(){
    // here you will provide the implementation of print pertaining to HP
  }
}

public class Lexmark extends Printer{
  public void print(){
    // here you will provide the implementation of print pertaining to Lexmark
  }
}
Notice that HP, Canon and Lexmark classes do not provide the implementation of getSystemResource().
Finally, in your main class, you can do the following:
public static void main(String args[]){
  Printer printer = new HP();
  printer.getSystemResource();
  printer.print();
}
 
Note: This answer is taken from this thread, and is written by Oh Chin Boon

Comments

Popular posts from this blog

GRANDING UTime Master - IDOR (CVE-2023-45393)

GRANDING UTime Master - Stored XSS (CVE-2023-45391)

Ericsson BSCS iX R18 Billing & Rating (ADMX, MX) - Stored XSS (CVE-2020-29144, CVE-2020-29145)