Operators: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add Rules of Precedence from SQF syntax)
(Add examples, fix table)
Line 274: Line 274:
== Rules of Precedence ==
== Rules of Precedence ==


{{Informative | Highest precedence {{=}} highest priority.}}
{{Informative |
* Highest precedence means highest priority
* Associativity is (then) done from left to right (e.g {{Inline code|3 + 5 + 8}} will be processed as {{Inline code|((3 + 5) + 8)}})
}}


{| class="operators"
{| class="operators"
Line 280: Line 283:
! Prece-<br>dence
! Prece-<br>dence
! Type of Operator
! Type of Operator
! Associativity
! Examples
|-
|-
| style="text-align: center" | 11
| style="text-align: center" | 11
Line 286: Line 289:
Nular operators (commands with no arguments):
Nular operators (commands with no arguments):
* <tt>commandName</tt>
* <tt>commandName</tt>
Other:
|
* Variables
* [[Variables]]
* Values
* Values
* Braced expressions
* Braced expressions
| Left-to-right
|-
|-
| style="text-align: center" | 10
| style="text-align: center" | 10
|
|
Unary operators (commands with 1 argument):
Unary operators (commands with 1 argument):
* <tt>commandName</tt> a<br>
* <tt>commandName</tt> a
Unary plus and minus:
|
* [[+ |+a]]
* [[+ |+a]]
* [[- | -a]]
* [[- | -a]]
[[Array]] copy operator:
 
* [[+ | +array]]
* [[+ | +array]]
Logical <tt>NOT</tt> operator:
 
* [[!_a | !b]]
* [[!_a | !b]]
* [[not | not b]]
* [[not | not b]]
| Left-to-right
|-
|-
| style="text-align: center" | 9
| style="text-align: center" | 9
| Hash-select operator
|
|
The new select operator:
* [[a_hash_b| array # index]]
* [[a_hash_b| array # index]]
| Left-to-right
|-
|-
| style="text-align: center" | 8
| style="text-align: center" | 8
| Power operator
|
|
Power operator:
* [[a ^ b]]
* [[a ^ b]]
| Left-to-right
|-
|-
| style="text-align: center" | 7
| style="text-align: center" | 7
|
|
[[Number]] multiplication, division and remainder:
* [[Number]] multiplication, division and remainder
*[[a * b]]
* [[atan2]]
* [[Config]] access ([[config / name|/]])
|
* [[a * b]]
* [[a / b]]
* [[a / b]]
* [[a % b]]
* [[a % b]]
* [[mod | a mod b]]
* [[mod | a mod b]]
[[Config]] access:
 
* [[config / name]]
* [[config / name]]
<tt>atan2</tt> command:
 
* [[atan2| a atan2 b]]
* [[atan2| a atan2 b]]
| Left-to-right
|-
|-
| style="text-align: center" | 6
| style="text-align: center" | 6
|
|
[[Number]] addition and subtraction:
* [[Number]] addition and subtraction
* [[Array]] addition and subtraction
* [[String]] addition
* [[min]] and [[max]] commands
|
* [[+ | a + b]]
* [[+ | a + b]]
* [[- | a - b]]
* [[- | a - b]]
[[Array]] addition and subtraction:
 
* [[+ | arr1 + arr2]]
* [[+ | arr1 + arr2]]
* [[- | arr1 - arr2]]
* [[- | arr1 - arr2]]
[[String]] addition:
 
* [[+ | str1 + str2]]
* [[+ | str1 + str2]]
<tt>min</tt> and <tt>max</tt> commands:
 
* [[min | a min b]]
* [[min | a min b]]
* [[max | a max b]]
* [[max | a max b]]
| Left-to-right
|-
|-
| style="text-align: center" | 5
| style="text-align: center" | 5
|
|
<tt>else</tt> operator:
* [[else]] ([[if]]-[[then]]-[[else]] structure)
* [[else]]
| {{n/a}}
| Left-to-right
|-
|-
| style="text-align: center" | 4
| style="text-align: center" | 4
Line 356: Line 359:
Binary operators (commands with 2 arguments):
Binary operators (commands with 2 arguments):
* a <tt>commandName</tt> b
* a <tt>commandName</tt> b
<tt>switch</tt> colon operator:
|
* [[a_:_b | : ]]
* [[setDir]]
| Left-to-right
* [[a_:_b |switch colon(:)]]
|-
|-
| style="text-align: center" | 3
| style="text-align: center" | 3
|
|
[[Number]] comparison:
* [[a == b|==]] and [[a != b|!=]] comparisons
* [[Number]] comparisons
* [[Config]] access ([[config greater greater name|&gt;&gt;]])
|
* [[a == b]]
* [[a == b]]
* [[a != b]]
* [[a != b]]
Line 369: Line 375:
* [[a_less=_b| a &gt;= b]]
* [[a_less=_b| a &gt;= b]]
* [[a_less=_b| a &lt;= b]]
* [[a_less=_b| a &lt;= b]]
[[String]] comparison:
 
* [[a == b | str1 == str2]]
* [[a != b | str1 != str2]]
[[Group]], [[Side]], [[Object]], [[Structured Text]], [[Config]], [[Display]], [[Control]] or [[Location]] comparison:
* [[a == b]]
* [[a != b]]
[[Config]] access:
* [[config_greater_greater_name | config >> name]]
* [[config_greater_greater_name | config >> name]]
| Left-to-right
|-
|-
| style="text-align: center" | 2
| style="text-align: center" | 2
| Logical [[and]] operator
|
|
Logical <tt>AND</tt> operator:
* [[a && b|&&]]
* [[and| a && b]]
* [[and]]
* [[and | a and b]]
| Left-to-right
|-
|-
| style="text-align: center" | 1
| style="text-align: center" | 1
| Logical [[or]] operator
|
* [[a or b|<nowiki/>||]]
* [[or]]
|}
=== Examples ===
{| class="wikitable"
! Input
! Process
! Comment
|-
|
1 + 2 * 3
|
1 + (2 * 3)
| result equals 7, and not 9 (see also {{Wikipedia|Order of operations|PEMDAS}})
|-
|
[[sleep]] 10 + [[random]] 20
|
|
Logical <tt>OR</tt> operator:
([[sleep]] 10) + [[random]] 20
* [[a or b| a <nowiki>||</nowiki> b]]
| {{Inline code|[[sleep]] 10}} will return [[Nothing]], then {{Inline code|+ [[random]] 20}} will be calculated but not used.<br>
* [[a or b| a or b]]
{{Inline code|[[sleep]] (10 + [[random]] 20)}} should be used instead
| Left-to-right
|}
|}



Revision as of 17:49, 24 October 2020

Template:SideTOC Operators are the base commands each programming language is built on. They provide ability to perform basic mathematical and logical operations.


Requirements

To understand this article, you should read the following articles:


Terms

Operand
An operand is any value given to an operator.
Expression
An expression is basically any code that returns a value. Read Expression for more information.
Unary Operator
An unary operator is an operator that requires only one operand.
Unary operation:
operator expression
Binary Operator
A binary operator is an operator that requires two operands.
Binary operation:
expression operator expression


Operators

Assignment Operators

Assignment operators are used to assign values to a variable. OFP's scripting language provides only one assignment operator.


Assignment:

identifier = expression


Example 1:

a = b

You might think that this operator compares a and b, but that is not the case. = simply sets the left value to be the right one. There don't exist any other assignment operators like +=, -= etc., that can be found in other programming languages.


Example 2:

a = b*c

Arithmetic Operators

Remember arithmetic operations from school? These work just the same way.

All operands of arithmetic operations must be Numbers. Arithmetic operations always return a Number.

Unary arithmetic operators (in order of precedence)
Operator Name Example
- Negation -a, +-a, -+a
+ Posation +a
( Bracket (expression)
Binary arithmetic operators
Operator Name Example
+ Addition a + b
- Subtraction a - b
* Multiplication a * b
/ Division a / b
% Modulo a % b
mod Modulo a mod b
^ Raise to the power of a ^ b

Modulo returns the remainder of the division a / b.


See also: Math Commands


Logical Operators

Logical operators evaluate Boolean values. All operands of logical operations are Booleans.

A logical operation always returns a Boolean.

Unary logical operators
Operator Name Example
! Not !a
not Not not a

The Not-operator always returns the inverse Boolean value. If a Boolean a is true, !a returns false and vice versa.

Binary logical operators
Operator Name Example
&& And a && b
and And a and b
|| Or a || b
or Or a or b
  • And only returns true if both operands are true
  • Or returns true if one or both operands are true


There is no Xor, Nor and Nand operator. Those can be simulated using the basic operators though:

Combined logical operators
Name Combination
Xor ((a || b) && !(a && b))
Nor !(a || b)
Nand !(a && b)
  • Xor returns true if exactly one of both values is true
  • Nor returns true if none of both values is true
  • Nand returns true if not both values are true at the same time

Comparison Operators

Comparison operators compare two values. Operands of comparisons may be of type Number, Side, String, Object, Group, Structured Text, Config, Display or Control for == and != , and Number for < > >= <=

Comparisons always return a Boolean: true if the comparison matches, false if not.

Comparison operators
Operator Name Example
== Equal a == b
!= Not equal a != b
< Less than a < b
> Greater than a > b
<= Less or equal a <= b
>= Greater or equal a >= b
invalid before Arma 3 v2.00 valid in all versions
a == true a
a == false !a
You could not compare Boolean values with == before Arma 3 v1.99.146526 (in Arma 3 before that, use isEqualTo).
Comparing a Boolean value with true is the same as the value itself.
Comparing a Boolean value with false is the same as the inverse value.

Array Operators

The scripting language offers own operators to deal with arrays. All operands, of course, have to be of type Array.

The return value of an array operation is an Array.

Unary array operators
Operator Name Example
+ Copy +myArray

Normally arrays are assigned by reference. That means, if you assign array a to array b and change a afterwards, also b is changed. Use the copy operator to avoid this otherwise useful feature.

Example 1:

_arrayA = [1,2];
_arrayB = _arrayA;
_arrayA set [0,5];

_arrayA => [5,2]
_arrayB => [5,2]

Example 2:

_arrayA = [1,2];
_arrayB = +_arrayA;
_arrayA set [0,5];

_arrayA => [5,2]
_arrayB => [1,2]
Binary array operators
Operator Name Example
+ Concatenation myArray1 + myArray2
- Removal myArray1 - myArray2
  • + adds the second operand on the end of the first operand
  • - removes all elements of the second operand from the first operand

Example 1:

_arrayA = [1,2];
_arrayB = [3,2,4];

_arrayC = _arrayA + _arrayB;

_arrayC => [1,2,3,2,4]

Example 2:

_arrayA = [1,2,3,2,4];
_arrayB = [2,3];

_arrayC = _arrayA - _arrayB;

_arrayC => [1,4]

String Operators

The scripting language offers one single string operator to concatenate strings. Both operands must be Strings.

The return value of a string operation is a String.

Binary string operators
Operator Name Example
+ Concatenation myString1 + myString2
  • + adds the second operand on the end of the first operand

Example:

_stringA = "Hello ";
_stringB = "World!";

_stringC = _stringA + _stringB;

_stringC => "Hello World!"


Rules of Precedence

  • Highest precedence means highest priority
  • Associativity is (then) done from left to right (e.g 3 + 5 + 8 will be processed as ((3 + 5) + 8))
Prece-
dence
Type of Operator Examples
11

Nular operators (commands with no arguments):

  • commandName
10

Unary operators (commands with 1 argument):

  • commandName a
9 Hash-select operator
8 Power operator
7
6
5 N/A
4

Binary operators (commands with 2 arguments):

  • a commandName b
3
2 Logical and operator
1 Logical or operator

Examples

Input Process Comment
1 + 2 * 3
1 + (2 * 3)
result equals 7, and not 9 (see also PEMDAS)
sleep 10 + random 20
(sleep 10) + random 20
sleep 10 will return Nothing, then + random 20 will be calculated but not used.

sleep (10 + random 20) should be used instead


See Also