+: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " _+ " to "")
m (Some wiki formatting)
(39 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
| ofp |Game=


|1.00|Game Version (number surrounded by NO SPACES)=
|sortKey= #


|arg= |Multiplayer Arguments ("local" or "global")=
|game1= ofp
|version1= 1.00


|eff= |Multiplayer Effects ("local" or "global")=
|game2= ofpe
|version2= 1.00


|serverExec= |Multiplayer Execution ("server" or empty)=
|game3= arma1
|version3= 1.00


|gr1= Math |GROUP1=
|game4= arma2
| Add two numbers, concatenate two arrays or two strings, or duplicate an array. For arrays also see [[pushBack]] and [[append]].  
|version4= 1.00


{{Warning | [[Array]] copy methods <tt>ARRAY + []</tt> and <tt>+ARRAY</tt> have different behaviours:
|game5= arma2oa
* <tt>ARRAY + []</tt> creates copy of the 1st dimension, but preserves references in other dimensions ({{Wikipedia|Object copying#Shallow copy|shallow copy}}).
|version5= 1.50
* <tt>+ARRAY</tt> clones every element, so if the array is multi-dimensional, the created copy contains no references ({{Wikipedia|Object copying#Deep copy|deep copy}}).
See [[#Examples|Example 6]].}} |Description=
| numberA [[+]] numberB |Syntax=


|p1= numberA: [[Number]] |Parameter 1=
|game6= tkoh
|version6= 1.00


|p2= numberB: [[Number]] |Parameter 2=
|game7= arma3
|version7= 0.50


| [[Number]] - the sum of ''numberA'' and ''numberB'' |Return Value=
|gr1= Math
|s2= [[+]] numberA |Alternative Syntax=


|p21= numberA: [[Number]] |Alternative Parameter 1=
|gr2= Arrays


|r2= [[Number]] - returns ''numberA'' |Alternative Return Value=
|gr3= HashMap
|s3= arrayA [[+]] arrayB |Alternative Syntax 3=


|p41= arrayA: [[Array]] |Alternative 3 Parameter 1=
|gr4= Strings


|p42= arrayB: [[Array]] |Alternative 3 Parameter 2=
|descr= Add two [[Number]]s, concatenate two [[Array]]s or two [[String]]s, or create a copy of an Array or [[HashMap]].


|r3= [[Array]] - a new array filled with ''arrayA'' and ''arrayB'' elements, in that order. |Alternative 3 Return Value=
{{Feature | Warning | [[Array]] copy methods {{hl|ARRAY + []}} and {{hl|+ ARRAY}} have different behaviours:
|s4= stringA [[+]] stringB |Alternative Syntax 4=
* {{hl|ARRAY + []}} creates copy of the 1st dimension, but preserves references in other dimensions ({{Wikipedia|Object copying#Shallow copy|shallow copy}}).
* {{hl|+ ARRAY}} clones every element, so if the array is multi-dimensional, the created copy contains no references ({{Wikipedia|Object copying#Deep copy|deep copy}}).
See [[#Example_6|Example 6]].}}


|p61= stringA: [[String]] |Alternative 4 Parameter 1=
|s1= numberA [[+]] numberB


|p62= stringB: [[String]] |Alternative 4 Parameter 2=
|p1= numberA: [[Number]]


|r4= [[String]] - a string concatenating ''stringA'' and ''stringB'' |Alternative 4 Return Value=
|p2= numberB: [[Number]]
|s5= [[+]] arrayA |Alternative Syntax 5=


|p81= arrayA: [[Array]] |Alternative 5 Parameter 1=
|r1= [[Number]] - The sum of ''numberA'' and ''numberB''


|r5= [[Array]] - a new instance of array filled with same items. |Alternative 5 Return Value=
|s2= [[+]] number
|x1= <code> 5 [[+]]  3; {{codecomment|// returns 8}}
-5 [[+]] -3; {{codecomment|// returns -8}}</code> |Example 1=


|x2= <code>[[+]] 2; {{codecomment|// returns  2}}
|p21= number: [[Number]]
[[+]] -7; {{codecomment|// returns -7}}</code> |Example 2=


|x3= <code>_arrayA = [1,2,3];
|r2= [[Number]] - The value of the parameter ''number''
 
|s3= arrayA [[+]] arrayB
 
|p41= arrayA: [[Array]]
 
|p42= arrayB: [[Array]]
 
|r3= [[Array]] - A new array filled with ''arrayA'' and ''arrayB'' elements, in that order
 
|s4= stringA [[+]] stringB
 
|p61= stringA: [[String]]
 
|p62= stringB: [[String]]
 
|r4= [[String]] - a string concatenating ''stringA'' and ''stringB''
 
|s5= [[+]] array
 
|p81= array: [[Array]]
 
|r5= [[Array]] - A new instance of the provided array filled with same elements ({{Wikipedia|Object copying#Deep copy|deep copy}})
 
|s6= [[+]] hashMap
 
|s6since= arma3 2.04
 
|p101= hashMap: [[HashMap]]
 
|r6= [[HashMap]] - A new instance of the provided [[HashMap]] filled with the same key-value pairs ({{Wikipedia|Object copying#Deep copy|deep copy}})
 
|x1= <sqf notrim>
5 +  3 // returns  8
-5 + -3 // returns -8
</sqf>
 
|x2= <sqf>
+  2 // returns  2
+ -7 // returns -7
</sqf>
 
|x3= <sqf>
_arrayA = [1,2,3];
_arrayB = [3,4,5];
_arrayB = [3,4,5];
_arrayAB = _arrayA + _arrayB; {{codecomment|// _arrayAB {{=}} [1,2,3,3,4,5]
_arrayAB = _arrayA + _arrayB; // _arrayAB = [1,2,3,3,4,5]
// _arrayA and _arrayB remain unchanged}}</code> |Example 3=
// _arrayA and _arrayB remain unchanged
</sqf>


|x4= <code>_result = "Hello" + " " + "there"; {{codecomment|// "Hello there"}}</code> |Example 4=
|x4= <sqf>_result = "Hello" + " " + "there"; // "Hello there"</sqf>


|x5= <code>_arrayA = [1,2,3];
|x5= <sqf>
_arrayB = +_arrayA;
_arrayA = [1,2,3];
_arrayB [[set]] [0, 99]; {{codecomment|// _arrayA {{=}} [1,2,3], _arrayB {{=}} [99,2,3]}}</code> |Example 5=
_arrayB = + _arrayA;
_arrayB set [0, 99]; // _arrayA = [1,2,3], _arrayB = [99,2,3]
</sqf>


|x6= Shallow copy with <tt>ARRAY + []</tt>:
|x6= Shallow copy with {{hl|ARRAY + []}}:
<code>[[private]] _subArray {{=}} [1, 2, 3];
<sqf>
[[private]] _array1 {{=}} [_subArray, 1, 2, 3];
private _subArray = [1, 2, 3];
[[private]] _array2 {{=}} _array1 + [];
private _array1 = [_subArray, 1, 2, 3];
_array2 [[select]] 0 [[set]] [0, "oops"];
private _array2 = _array1 + [];
[[hint]] [[str]] _subArray; {{cc|["oops", 2, 3]}}</code>
_array2 select 0 set [0, "oops"];
Deep copy with <tt>+ARRAY</tt>:
hint str _subArray; // ["oops", 2, 3]
<code>[[private]] _subArray {{=}} [1, 2, 3];
</sqf>
[[private]] _array1 {{=}} [_subArray, 1, 2, 3];
[[private]] _array2 {{=}} +_array1;
_array2 [[select]] 0 [[set]] [0, "oops"];
[[hint]] [[str]] _subArray; {{cc|[1, 2, 3]}}</code> |Example 6=
| [[Operators]], [[pushBack]], [[append]] |See Also=
}}


<dl class="command_description">
Deep copy with {{hl|+ ARRAY}}:
<!-- BEGIN Note Section -->
<sqf>
<!-- END Note Section -->
private _subArray = [1, 2, 3];
</dl>
private _array1 = [_subArray, 1, 2, 3];
private _array2 = + _array1;
_array2 select 0 set [0, "oops"];
hint str _subArray; // [1, 2, 3]
</sqf>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[Operators]] [[pushBack]] [[append]] [[merge]]
<!-- Appropriate categories go here -->
}}
 
[[Category:Scripting Commands|#]]
[[Category:Scripting Commands OFP 1.99|#]]
[[Category:Scripting Commands OFP 1.96|#]]
[[Category:Scripting Commands OFP 1.46|#]]
[[Category:Scripting Commands Armed Assault|#]]
[[Category:Scripting Commands Arma 2|#]]
[[Category:Scripting Commands Arma 3|#]]

Revision as of 17:56, 8 August 2022

Hover & click on the images for description

Description

Description:
Add two Numbers, concatenate two Arrays or two Strings, or create a copy of an Array or HashMap.
Array copy methods ARRAY + [] and + ARRAY have different behaviours:
  • ARRAY + [] creates copy of the 1st dimension, but preserves references in other dimensions (shallow copy).
  • + ARRAY clones every element, so if the array is multi-dimensional, the created copy contains no references (deep copy).
See Example 6.
Groups:
MathArraysHashMapStrings

Syntax 1

Syntax:
numberA + numberB
Parameters:
numberA: Number
numberB: Number
Return Value:
Number - The sum of numberA and numberB

Syntax 2

Syntax:
+ number
Parameters:
number: Number
Return Value:
Number - The value of the parameter number

Syntax 3

Syntax:
arrayA + arrayB
Parameters:
arrayA: Array
arrayB: Array
Return Value:
Array - A new array filled with arrayA and arrayB elements, in that order

Syntax 4

Syntax:
stringA + stringB
Parameters:
stringA: String
stringB: String
Return Value:
String - a string concatenating stringA and stringB

Syntax 5

Syntax:
+ array
Parameters:
array: Array
Return Value:
Array - A new instance of the provided array filled with same elements (deep copy)

Syntax 6

Syntax:
+ hashMap
Parameters:
hashMap: HashMap
Return Value:
HashMap - A new instance of the provided HashMap filled with the same key-value pairs (deep copy)

Examples

Example 1:
5 + 3 // returns 8 -5 + -3 // returns -8
Example 2:
+ 2 // returns 2 + -7 // returns -7
Example 3:
_arrayA = [1,2,3]; _arrayB = [3,4,5]; _arrayAB = _arrayA + _arrayB; // _arrayAB = [1,2,3,3,4,5] // _arrayA and _arrayB remain unchanged
Example 4:
_result = "Hello" + " " + "there"; // "Hello there"
Example 5:
_arrayA = [1,2,3]; _arrayB = + _arrayA; _arrayB set [0, 99]; // _arrayA = [1,2,3], _arrayB = [99,2,3]
Example 6:
Shallow copy with ARRAY + []:
private _subArray = [1, 2, 3]; private _array1 = [_subArray, 1, 2, 3]; private _array2 = _array1 + []; _array2 select 0 set [0, "oops"]; hint str _subArray; // ["oops", 2, 3]
Deep copy with + ARRAY:
private _subArray = [1, 2, 3]; private _array1 = [_subArray, 1, 2, 3]; private _array2 = + _array1; _array2 select 0 set [0, "oops"]; hint str _subArray; // [1, 2, 3]

Additional Information

See also:
Operators pushBack append merge

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note