Added Official Oracle Java docs for abstract class (#21595)

* Added Official Oracle Java docs for abstract class

* Fixed formatting
This commit is contained in:
Jonathan Lam
2018-11-17 13:41:44 -08:00
committed by Manish Giri
parent 96e2a2f621
commit 99b3079019

View File

@ -47,3 +47,6 @@ Motorcycle mBikeObj = new Motorcycle(); // valid
``` ```
If the child class doesn't implement the abstract methods of the father, it becomes an abstract class. If the child class doesn't implement the abstract methods of the father, it becomes an abstract class.
#### More Information
- [Oracle Java Docs - Abstract Classes](https://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.1.1.1)