From b583b5646ceddec3fa216c93388d5dd4c7d4fc90 Mon Sep 17 00:00:00 2001 From: Rosario Date: Fri, 12 Oct 2018 17:04:11 +0200 Subject: [PATCH] Add more information about abstraction (#18461) * Add more information about abstraction * Update index.md --- client/src/pages/guide/english/java/abstract-class/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/pages/guide/english/java/abstract-class/index.md b/client/src/pages/guide/english/java/abstract-class/index.md index 75aaff22f0..388ba6c2f1 100644 --- a/client/src/pages/guide/english/java/abstract-class/index.md +++ b/client/src/pages/guide/english/java/abstract-class/index.md @@ -46,3 +46,4 @@ Car carObj = new Car(); // valid Motorcycle mBikeObj = new Motorcycle(); // valid ``` +If the child class doesn't implement the abstract methods of the father, it becomes an abstract class.