Object Oriented Programming Basics – Arma Reforger
Lou Montana (talk | contribs) m (Text replacement - "<syntaxhighlight lang="C#">" to "<enforce>") |
Lou Montana (talk | contribs) (Fix examples) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 12: | Line 12: | ||
A member variable is a variable scoped to that object instance. | A member variable is a variable scoped to that object instance. | ||
It is usually {{hl|protected}} but can be {{hl|private}} (see {{ | It is usually {{hl|protected}} but can be {{hl|private}} (see {{Link|#Visibility}}); a public member is usually a bad practice - it is best to use {{Link|#Getter and Setter|Getters and Setters}}. | ||
See [[Arma Reforger:Scripting: Values]] for naming prefixes. | See [[Arma Reforger:Scripting: Values]] for naming prefixes. | ||
Line 19: | Line 19: | ||
class MyClass | class MyClass | ||
{ | { | ||
protected int m_iValue = | protected int m_iValue = 100; | ||
void MyClass(int value) | void MyClass(int value) | ||
Line 26: | Line 26: | ||
} | } | ||
} | } | ||
</ | </enforce> | ||
Line 33: | Line 33: | ||
A method is an object's function or a class' (static) function - it can be seen as a "member function". | A method is an object's function or a class' (static) function - it can be seen as a "member function". | ||
A method has a '''signature''', i.e a return type, a name and a parameters list - e.g: <enforce>int GetNumber(bool canBeNegative)</ | A method has a '''signature''', i.e a return type, a name and a parameters list - e.g: <enforce>int GetNumber(bool canBeNegative)</enforce> | ||
Line 54: | Line 54: | ||
{ | { | ||
Print("MyMethod with 1 int argument"); | Print("MyMethod with 1 int argument"); | ||
} | |||
void MyMethod(int a, int b = 0) // error: "identical" to the above method due to the optional parameter | |||
{ // both can be called MyMethod(42) | |||
Print("MyMethod with 1 or 2 int argument(s)"); | |||
} | } | ||
Line 81: | Line 86: | ||
int staticResult = MyClass.MyStaticMethod(); // without instance usage, staticResult is 33 | int staticResult = MyClass.MyStaticMethod(); // without instance usage, staticResult is 33 | ||
</ | </enforce> | ||
=== Getter and Setter === | === Getter and Setter === | ||
Line 92: | Line 97: | ||
class MyClass | class MyClass | ||
{ | { | ||
int Health = 100; // bad - public access | |||
} | } | ||
class MyClass | class MyClass | ||
{ | { | ||
protected int m_iHealth; | protected int m_iHealth; // good - getter and setter allow for evolution | ||
int GetHealth() // health getter | int GetHealth() // health getter | ||
Line 112: | Line 112: | ||
{ | { | ||
m_iHealth = health; | m_iHealth = health; | ||
} | |||
void MyClass() // constructor method | |||
{ | |||
m_iHealth = 100; | |||
} | } | ||
} | } | ||
Line 144: | Line 149: | ||
} | } | ||
} | } | ||
</ | </enforce> | ||
=== Constructor === | === Constructor === | ||
Line 154: | Line 159: | ||
{{Feature|informative| | {{Feature|informative| | ||
The parent class constructor (see the {{ | The parent class constructor (see the {{Link|#Inheritance}} chapter below) is automatically called. | ||
An inheriting class can only '''add''' new arguments to those accepted by the base class constructor. | An inheriting class can only '''add''' new arguments to those accepted by the base class constructor. | ||
}} | }} | ||
Line 168: | Line 173: | ||
m_iValue = 50; | m_iValue = 50; | ||
} | } | ||
} | } | ||
MyClass instance = new MyClass(); // instance.m_iValue = 50 | MyClass instance = new MyClass(); // instance.m_iValue = 50 | ||
</ | </enforce> | ||
<enforce> | <enforce> | ||
Line 183: | Line 188: | ||
m_iValue = value; | m_iValue = value; | ||
} | } | ||
} | } | ||
MyClass instance = new MyClass(42); // prints "Instance created with value 42" | MyClass instance = new MyClass(42); // prints "Instance created with value 42" | ||
MyClass instance = new MyClass(); // | MyClass instance = new MyClass(); // error: argument is missing | ||
</ | </enforce> | ||
=== Destructor === | === Destructor === | ||
A destructor method is a specific one: it is a method that is automatically called on object destruction, and exists only without arguments. There can be zero to one destructor. | A destructor method is a specific one: it is a method that is automatically called on object destruction, and exists only without arguments.<br> | ||
There can be zero to one destructor. | |||
A destructor is declared as a method having the same name as its class, starting with a tilde {{hl|~}}. | A destructor is declared as a method having the same name as its class, starting with a tilde {{hl|~}}. | ||
Line 206: | Line 212: | ||
MyClass instance = new MyClass(); | MyClass instance = new MyClass(); | ||
delete instance; // prints "I am being destroyed!"; | delete instance; // prints "I am being destroyed!"; | ||
</ | </enforce> | ||
Line 217: | Line 223: | ||
This is the default visibility - the member is accessible from inside as well as outside the object. As the default visibility, it does not need a keyword. | This is the default visibility - the member is accessible from inside as well as outside the object. As the default visibility, it does not need a keyword. | ||
<enforce> | <enforce noguess> | ||
class ParentClass | class ParentClass | ||
{ | { | ||
Line 236: | Line 242: | ||
ChildClass child = new ChildClass(); | ChildClass child = new ChildClass(); | ||
child.Health = 10; // OK | child.Health = 10; // OK | ||
</ | </enforce> | ||
=== protected === | === protected === | ||
Line 266: | Line 272: | ||
child.m_iHealth = 10; // error: cannot access from the outside | child.m_iHealth = 10; // error: cannot access from the outside | ||
child.SetHealth(10); // OK - the child can internally edit the inherited member | child.SetHealth(10); // OK - the child can internally edit the inherited member | ||
</ | </enforce> | ||
=== private === | === private === | ||
Line 291: | Line 297: | ||
parent.m_iHealth = 10; // error: cannot access from the outside | parent.m_iHealth = 10; // error: cannot access from the outside | ||
parent.SetHealth(10); // error: the SetHealth method is a member of ChildClass, not ParentClass | parent.SetHealth(10); // error: the SetHealth method is a member of ChildClass, not ParentClass | ||
</ | </enforce> | ||
Line 321: | Line 327: | ||
ChildClass child = new ChildClass(); | ChildClass child = new ChildClass(); | ||
child.ParentMethod(); // outputs "Parent Method" | child.ParentMethod(); // outputs "Parent Method" | ||
child.ChildMethod(); // outputs "Child Method"</ | child.ChildMethod(); // outputs "Child Method"</enforce> | ||
=== override === | === override === | ||
Line 348: | Line 354: | ||
ChildClass child = new ChildClass(); | ChildClass child = new ChildClass(); | ||
child.TheMethod(); // outputs "Child Method" | child.TheMethod(); // outputs "Child Method" | ||
</ | </enforce> | ||
{{Feature|important| | |||
An overridden method must have the '''exact same signature''' as the overridden method - up to the parameter names. | |||
<enforce> | |||
int MyMethod(int value1, int value2); | |||
// overrides | |||
override int MyMethod(int value1, int value2); // works | |||
override int MyMethod(int value1, string value2); // does not work - parameter types mismatch | |||
override int MyMethod(int valueA, int valueB); // does not work - parameter names mismatch | |||
</enforce> | |||
}} | |||
=== super === | === super === | ||
Line 376: | Line 394: | ||
ChildClass child = new ChildClass(); | ChildClass child = new ChildClass(); | ||
child.TheMethod(); // outputs "ParentMethodA" then "Child MethodB" | child.TheMethod(); // outputs "ParentMethodA" then "Child MethodB" | ||
</ | </enforce> | ||
It can even call an | It can even call an overridden one: | ||
<enforce> | <enforce> | ||
class ParentClass | class ParentClass | ||
Line 402: | Line 420: | ||
ChildClass child = new ChildClass(); | ChildClass child = new ChildClass(); | ||
child.TheMethod(); // outputs "Parent Method" then "Child Method" | child.TheMethod(); // outputs "Parent Method" then "Child Method" | ||
</ | </enforce> | ||
Line 410: | Line 428: | ||
{{GameCategory|armaR|Modding|Guidelines | {{GameCategory|armaR|Modding|Scripting|Guidelines}} |
Latest revision as of 00:09, 16 June 2025
Class vs Object
A class is a definition of an object; it can be seen as the blueprint for an object's creation. An object is an instance of a class, as in an entity created following the class' specifics.
An object can hold values, known as member variables, and functions, known as methods.
A class can have variables and methods too, known as static variables and methods.
Member Variable
A member variable is a variable scoped to that object instance. It is usually protected but can be private (see Visibility); a public member is usually a bad practice - it is best to use Getters and Setters.
See Arma Reforger:Scripting: Values for naming prefixes.
Method
A method is an object's function or a class' (static) function - it can be seen as a "member function".
A method has a signature, i.e a return type, a name and a parameters list - e.g:
Two methods can be named identically as long as they differ by their parameters.
Getter and Setter
A Getter describes a method that gets the value of a property;
A Setter describes a method that sets it.
Constructor
A constructor method is a specific one: it is a method that is automatically called on object instanciation, and can be with or without arguments.
There can be zero to one constructor.
A constructor is declared as a method having the same name as its class.
Destructor
A destructor method is a specific one: it is a method that is automatically called on object destruction, and exists only without arguments.
There can be zero to one destructor.
A destructor is declared as a method having the same name as its class, starting with a tilde ~.
Visibility
Visibility is the accessibility of an object's or class' method/variable from the "outside" of that object/class.
public
This is the default visibility - the member is accessible from inside as well as outside the object. As the default visibility, it does not need a keyword.
protected
This is a "hierarchy" visibility - the member is accessible from the object and objects of inheriting classes. It uses the protected keyword.
private
This is the strictest visibility - only the object can access this member. This is useful to e.g cut code in smaller methods and not clutter the list of available methods on this object from the outside. It uses the private keyword.
Inheritance
Inheritance is the transmission of parent properties to a child class. Class inheritance is written with :. A class can only inherit from one class.
override
A non-private (protected or public) inherited method can be overridden thanks to the override keyword:
super
An inherited object can call its parent's non-private (protected or public) method:
It can even call an overridden one: