Method (computer Programming) - Class Methods

Class Methods

Class methods are methods that are called on a class (compare this to class instance methods, or object methods). Its meaning may vary depending on the programming language:

  • In some languages (e.g. C++, Java), class methods are synonymous with static methods (see section below), which are called with a known class name at compile-time. this cannot be used in static methods.
  • In some other languages (e.g. Smalltalk, Ruby, Objective-C), class methods are methods that are called on a class object, which can be computed at runtime, there being no difference between calling a method on a regular object or a class object; thus both instance and class methods are resolved dynamically, and there are no "static" methods. Notably, in these class methods, this refers to the class object.
  • Some languages have both. For example, in Python, one can create class methods and static methods using the classmethod and staticmethod decorators, respectively. The former has access to this (i.e. the instance object, conventionally known as self), while the latter does not.

Read more about this topic:  Method (computer Programming)

Famous quotes containing the words class and/or methods:

    Women ... are completely alone, though they were born and bred upon this soil, as if they belonged to another class in creation.
    “Jennie June” Croly 1829–1901, U.S. founder of the woman’s club movement, journalist, author, editor. F, Demorest’s Illustrated Monthly Mirror of Fashions, pp. 363-4 (December 1870)

    Cold and hunger seem more friendly to my nature than those methods which men have adopted and advise to ward them off.
    Henry David Thoreau (1817–1862)