From a9eb6b0e52176bc95b435b083790661a4bc985bb Mon Sep 17 00:00:00 2001 From: ahs-atan <36663763+ahs-atan@users.noreply.github.com> Date: Sat, 17 Nov 2018 10:04:48 +0000 Subject: [PATCH] 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 --- guide/english/java/inheritance/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guide/english/java/inheritance/index.md b/guide/english/java/inheritance/index.md index 6ddec4fd6d9..d709e5431a5 100644 --- a/guide/english/java/inheritance/index.md +++ b/guide/english/java/inheritance/index.md @@ -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