This is my test program in Java. I want to know how much abstract class is more important here and why we use abstract class for this.
Is it a mandatory or is it best method; if so how?
class Shape1 { int i = 1; void draw() { System.out.println("this is shape:" + i); } } class Shape2 { int i = 4; void draw() { System.out.println("this is shape2:" + i); } } class Shape { public static void main(String args[]) { Shape1 s1 = new Shape1(); s1.draw(); Shape2 s2 = new Shape2(); s2.draw(); } }
Abstract class: is a restricted class that cannot be used to create objects (to access it, it must be inherited from another class). Abstract method: can only be used in an abstract class, and it does not have a body. The body is provided by the subclass (inherited from).
The short answer: An abstract class allows you to create functionality that subclasses can implement or override. An interface only allows you to define functionality, not implement it. And whereas a class can extend only one abstract class, it can take advantage of multiple interfaces.
Java Abstract class can implement interfaces without even providing the implementation of interface methods. Java Abstract class is used to provide common method implementation to all the subclasses or to provide default implementation.
Declaring a class as abstract means that it cannot be directly instantiated, which means that an object cannot be created from it. That protects the code from being used incorrectly. Abstract classes require subclasses to further define attributes necessary for individual instantiation.
You'd use an abstract class or interface here in order to make a common base class/interface that provides the void draw()
method, e.g.
abstract class Shape() { void draw(); } class Circle extends Shape { void draw() { ... } } ... Shape s = new Circle(); s.draw();
I'd generally use an interface. However you might use an abstract class if:
int i
member in your case).void draw()
would have package visibility.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With