Jump to content

Virtual method

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by S.K. (talk | contribs) at 15:23, 24 November 2004 (Fixed explanation: subclass instead of superclass). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Virtual functions

In object oriented programming, a virtual method is a method that when overidden by a subclass will be used by the base class. Normally when a method is overridden only the subclass will use the overidden method, and the base will continue to use the original.

Virtual methods are implemented with a virtual method table.