previous | index | next

Static Methods

Regular class methods are dynamic because they are called as messages passed to objects:
     object->dynamic_method(...)

Static methods are those that are not called on objects. Instead, they are called like non-OOP C++ functions:

     static_method(...)


previous | index | next