Difference between revisions of "Gambas/syntax/variables/classes"
Jump to navigation
Jump to search
(note about object assignment) |
(current documentation link) |
||
Line 4: | Line 4: | ||
* [[/inheritance]] | * [[/inheritance]] | ||
* [[/virtual]] | * [[/virtual]] | ||
+ | ==Links== | ||
+ | ===Official=== | ||
+ | * [http://gambaswiki.org/wiki/cat/object Object & Class Management] (new) |
Revision as of 22:44, 27 April 2015
Notes
Object variables seem to be essentially pointers, as in most object-oriented languages. In other words, if you set object A equal to object B (A = B), then change object B, the changes will be reflected in A as well.