Difference between revisions of "Gambas/syntax/variables/classes/virtual"
Jump to navigation
Jump to search
m (Woozle moved page Gambas/virtual class to Gambas/syntax/variables/classes/virtual: reorganizing) |
(corrections) |
||
Line 1: | Line 1: | ||
− | == | + | ==About== |
− | In [[Gambas]], a | + | In [[Gambas]], a '''virtual class''' is a class containing one or more [[abstract method]]s (which Gambas calls "virtual methods"), i.e. methods whose [[method interface|interface]] has been defined but whose [[method implementation|implementation]] has not been. |
− | + | Gambas virtual classes are always named beginning with a "." (e.g. ".ListViewItem") except when being invoked as the ancestor of another class (i.e. using the "{{l/sub|inherits|Gambas}}" keyword). | |
− | |||
− |
Revision as of 23:12, 9 May 2015
About
In Gambas, a virtual class is a class containing one or more abstract methods (which Gambas calls "virtual methods"), i.e. methods whose interface has been defined but whose implementation has not been.
Gambas virtual classes are always named beginning with a "." (e.g. ".ListViewItem") except when being invoked as the ancestor of another class (i.e. using the "inherits" keyword).