CSC/ECE 517 Fall 2011/ch1 1i lj: Difference between revisions
Jump to navigation
Jump to search
(Created page with "CSC/ECE 517 Fall 2010/ch1 1i lj ---- = Introduction = [http://en.wikipedia.org/wiki/Method_overriding], in object oriented programming, is a language feature that allows a subcla...") |
No edit summary |
||
Line 2: | Line 2: | ||
---- | ---- | ||
= Introduction = | = Introduction = | ||
[http://en.wikipedia.org/wiki/Method_overriding], in object oriented programming, is a language feature that allows a subclass to provide a specific implementation of a method that is already provided by one of its superclasses. The implementation in the subclass overrides (replaces) the implementation in the superclass. | Method overriding [http://en.wikipedia.org/wiki/Method_overriding], in object oriented programming, is a language feature that allows a subclass to provide a specific implementation of a method that is already provided by one of its superclasses. The implementation in the subclass overrides (replaces) the implementation in the superclass. |
Revision as of 20:31, 8 September 2011
CSC/ECE 517 Fall 2010/ch1 1i lj
Introduction
Method overriding [1], in object oriented programming, is a language feature that allows a subclass to provide a specific implementation of a method that is already provided by one of its superclasses. The implementation in the subclass overrides (replaces) the implementation in the superclass.