+: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<tt>([^= ]+)<\/tt>" to "{{hl|$1}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 83: | Line 83: | ||
|r6= [[HashMap]] - A new instance of the provided [[HashMap]] filled with the same key-value pairs ({{Wikipedia|Object copying#Deep copy|deep copy}}) | |r6= [[HashMap]] - A new instance of the provided [[HashMap]] filled with the same key-value pairs ({{Wikipedia|Object copying#Deep copy|deep copy}}) | ||
|x1= < | |x1= <sqf> | ||
-5 | 5 + 3 // returns 8 | ||
-5 + -3 // returns -8 | |||
</sqf> | |||
|x2= < | |x2= <sqf> | ||
+ 2 // returns 2 | |||
+ -7 // returns -7 | |||
</sqf> | |||
|x3= < | |x3= <sqf> | ||
_arrayA = [1,2,3]; | |||
_arrayB = [3,4,5]; | _arrayB = [3,4,5]; | ||
_arrayAB = _arrayA + _arrayB; | _arrayAB = _arrayA + _arrayB; // _arrayAB = [1,2,3,3,4,5] | ||
// _arrayA and _arrayB remain unchanged | |||
</sqf> | |||
|x4= < | |x4= <sqf>_result = "Hello" + " " + "there"; // "Hello there"</sqf> | ||
|x5= < | |x5= <sqf> | ||
_arrayA = [1,2,3]; | |||
_arrayB = + _arrayA; | _arrayB = + _arrayA; | ||
_arrayB | _arrayB set [0, 99]; // _arrayA = [1,2,3], _arrayB = [99,2,3] | ||
</sqf> | |||
|x6= Shallow copy with {{hl|ARRAY + []}}: | |x6= Shallow copy with {{hl|ARRAY + []}}: | ||
< | <sqf> | ||
private _subArray = [1, 2, 3]; | |||
private _array1 = [_subArray, 1, 2, 3]; | |||
_array2 | private _array2 = _array1 + []; | ||
_array2 select 0 set [0, "oops"]; | |||
hint str _subArray; // ["oops", 2, 3] | |||
</sqf> | |||
Deep copy with {{hl|+ ARRAY}}: | Deep copy with {{hl|+ ARRAY}}: | ||
< | <sqf> | ||
private _subArray = [1, 2, 3]; | |||
private _array1 = [_subArray, 1, 2, 3]; | |||
_array2 | private _array2 = + _array1; | ||
_array2 select 0 set [0, "oops"]; | |||
hint str _subArray; // [1, 2, 3] | |||
</sqf> | |||
|seealso= [[Operators]] [[pushBack]] [[append]] [[merge]] | |seealso= [[Operators]] [[pushBack]] [[append]] [[merge]] | ||
}} | }} |
Revision as of 15:34, 10 May 2022
Description
- Description:
- Add two Numbers, concatenate two Arrays or two Strings, or create a copy of an Array or HashMap.
- Groups:
- MathArraysHashMapStrings
Syntax 1
- Syntax:
- numberA + numberB
- Parameters:
- numberA: Number
- numberB: Number
- Return Value:
- Number - The sum of numberA and numberB
Syntax 2
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:
- Example 4:
- Example 5:
- Example 6:
- Shallow copy with ARRAY + []:
Deep copy with + ARRAY:
Additional Information
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
Categories:
- Pages with SQF errors
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Math
- Command Group: Arrays
- Command Group: HashMap
- Command Group: Strings