Introduction to OOP | Chapter 23: Object Interconnections : | next | previous | audio | real | text |
Ideally the parent has no strong connection to the child, so the connection is one way. Can understand the parent in isolation from the child.
class Parent { ... } class Child extends Parent { ... }A very weak form of coupling. Which makes it a good design choice.