IDYN Solutions

Search Results

OOP Concept – Inheritance

November 8, 2006 · 11 Comments

Basics
Different kinds of objects often have a certain amount in common with each other. Tiger & Cow, for example share the characteristics of Animal; Yet each also defines additional features that make them different. Object-oriented programming allows classes to inherit commonly used state and behavior from other classes.
Inheritance provides a way to extend [...]

Tags: OOP Concepts