Data Types

From Bohemia Interactive Community
Revision as of 02:00, 8 February 2021 by R3vo (talk | contribs) (Text replacement - "{{Checkbox|no}}" to "{{Icon|unchecked}}")
Jump to navigation Jump to search

The data type of a variable specifies which data it may contain. Certain operators and scripting commands require variables to be of certain types.


Definition

The data type of a variable depends on the value given to it on initialization.

myVar = ""; // myVar is now a String

a local variable should be prefixed with private (Arma 3) or local (Arma 2) to avoid a potential upper-scope variable overwrite:

private _myLocalVariable = "";	// Arma 3
local _myLocalVariable = "";	// Arma 2


Redefinition

The data type of a variable may be changed at any point of the game by just redefining the variable with another type.

myVar = "";	// myVar is a String
myVar = 0;	// myVar is now a Number


Available Types

Type OFP ArmA Arma 2 Arma 3
Array Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Boolean Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Group Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Number Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Object Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Side Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
String Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Code Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Config Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Control Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Display Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Location Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Script (Handle) Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Structured Text Unchecked Template:Checkbox Template:Checkbox Template:Checkbox
Diary Record Unchecked Unchecked Template:Checkbox Template:Checkbox
Task Unchecked Unchecked Template:Checkbox Template:Checkbox
Team Member Unchecked Unchecked Template:Checkbox Template:Checkbox
Namespace Unchecked Unchecked Template:Checkbox Template:Checkbox
HashMap Unchecked Unchecked Unchecked Template:Checkbox
HashMapKey Unchecked Unchecked Unchecked Template:Checkbox

Magic Types

There are some magic data types, which are not really datatypes, as they do not describe any particular value.


Syntactical Helper Types

Some more types are used to provide for a construction of syntactically richer constructs than normal unary / binary operators.