Data Types: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{task}}" to "{{Checkbox|no}}")
m (Text replacement - "|arma|" to "|arma1|")
Line 23: Line 23:


{| class="wikitable sortable"
{| class="wikitable sortable"
! Type !! {{Name|ofp|short}} !! {{Name|arma|short}} !! {{arma2}} !! {{arma3}}
! Type !! {{Name|ofp|short}} !! {{Name|arma1|short}} !! {{arma2}} !! {{arma3}}
|-
|-
| [[Array]] || {{Checkbox|yes}} || {{Checkbox|yes}} || {{Checkbox|yes}} || {{Checkbox|yes}}
| [[Array]] || {{Checkbox|yes}} || {{Checkbox|yes}} || {{Checkbox|yes}} || {{Checkbox|yes}}

Revision as of 11:26, 26 December 2020

Template:SideTOC 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 Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Config Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Control Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Display Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Location Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Script (Handle) Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Structured Text Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Diary Record Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Task Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Team Member Template:Checkbox Template:Checkbox Template:Checkbox Template:Checkbox
Namespace Template:Checkbox Template:Checkbox Template:Checkbox 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.