CSC/ECE 517 Fall 2011/ch6 6b ra: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
<p> Subclassing is one of the significant features of [http://en.wikipedia.org/wiki/Object-oriented_programming OO programming], which greatly increases the reusability of classes and also minimizes duplication of code. A subclass usually inherits some properties from a super class. A superclass consists of common features that can be extended over subclasses. It is extensively used in object oriented programming because of the reusability that can be achieved. Superclass and subclass are commonly called base and derived class. | <p> Subclassing is one of the significant features of [http://en.wikipedia.org/wiki/Object-oriented_programming OO programming], which greatly increases the reusability of classes and also minimizes duplication of code. A subclass usually inherits some properties from a super class. A superclass consists of common features that can be extended over subclasses. It is extensively used in object oriented programming because of the reusability that can be achieved. Superclass and subclass are commonly called base and derived class. | ||
< | <br> |-------------| | ||
< | <br> | Super Class | | ||
< | <br> |-------------| | ||
< | <br> /|\ | ||
< | <br> | | ||
< | <br> | | ||
< | <br> |-------------| | ||
< | <br> | Sub Class | | ||
< | <br> |-------------| | ||
==Conclusion== | ==Conclusion== |
Revision as of 18:39, 12 November 2011
Subclassing
Introduction
Subclassing is one of the significant features of OO programming, which greatly increases the reusability of classes and also minimizes duplication of code. A subclass usually inherits some properties from a super class. A superclass consists of common features that can be extended over subclasses. It is extensively used in object oriented programming because of the reusability that can be achieved. Superclass and subclass are commonly called base and derived class.
|-------------|
| Super Class |
|-------------|
/|\
|
|
|-------------|
| Sub Class |
|-------------|