Method (computer programming)
![]() | This page or section needs to be cleaned up. |
![]() | The English used in this article or section may not be easy for everybody to understand. |
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.