Some Useful links - Esecially for beginners (#22211)

Some links I found useful for learning and understanding Java Inheritance:
 - https://www.codejava.net/java-core/the-java-language/12-rules-and-examples-about-inheritance-in-java
 - https://medium.com/java-for-absolute-dummies/inheritance-in-java-programming-39176e0016f3
pull/22225/head^2
ahs-atan 2018-11-17 10:04:48 +00:00 committed by Manish Giri
parent bc09a7b179
commit a9eb6b0e52
1 changed files with 4 additions and 0 deletions

View File

@ -189,3 +189,7 @@ Remember, if the superclass does not have any constructors defined, you don't ha
If no other constructors are defined, then Java invokes the default super class constructor (_even if not defined explicitly_).
Congrats, now you know all about Inheritance! Read more about advanced ways to inherit things in Abstract Classes and [Interfaces](//forum.freecodecamp.com/t/java-docs-interfaces)!
Here are some useful links to learn more about Inheritance in Java (great for those starting out with Java):
- https://www.codejava.net/java-core/the-java-language/12-rules-and-examples-about-inheritance-in-java
- https://medium.com/java-for-absolute-dummies/inheritance-in-java-programming-39176e0016f3