Jump to content

Method (computer programming)

From Simple English Wikipedia, the free encyclopedia
Revision as of 22:58, 19 March 2009 by TechBot (talk | changes) (robot Modifying: es:Método (informática))

In object-oriented programming, a method is a part of an object. A method allows the object to perform an action, whether this action is to modify itself or to return a value. An example is:

public int getOne() {
return 1;
}

This syntax is identical between programing languages such as Java and C#.

The public identifier means that this method is publically accessible, that anyone is allowed to use this. In comparison, a method may be private or sometimes protected, the latter of which means only specific parts of the same program are allowed to use this method, and never a human user. A privately accessible method only allows the object it belongs to to edit it. This is used to give data security.

The int indentifier means that the return type is an integer value.