0
Can you please explain how to use an abstract class because i cannot initialize it.
3 Réponses
+ 1
You can't initialize an abstract class, because they have no implementation. Abstract classes are basically an outline of what a child class must contain. Think Interface, which is really just a special type of abstract class.
https://docs.oracle.com/javase/tutorial/java/IandI/abstract.html
0
Yes but i want you to give me an example of an already made abstract class not one that is custom made. please
0
https://www.tutorialspoint.com/java/java_abstraction.htm
Maybe this will help.