Scala - Operators
Operators are used to perform operation on a single operand or two operands. Operators in Scala can be categorized as follows:
- Arithmetic operators
- Assignment operators
- Comparison operators
- Logical operators
- Bitwise operators
Scala Arithmetic operators
Arithmetic operators are used to perform arithmetic operations on two operands.
Operator | Name | Description |
---|---|---|
+ | Addition | Add two values |
- | Subtraction | Subtract one value from another |
* | Multiplication | Multiply two values |
/ | Division | Divide one value by another |
% | Modulo | Returns remainder of division operation |
Example
Ruby Assignment operators
Assignment operators are used to assign values of right hand side expression to left hand side operand.
Operator | Expression | Equivalent to | Description |
---|---|---|---|
= | a = 5 | a = 5 | Example |
+= | a += b | a = a + b | |
-= | a -= b | a = a - b | |
*= | a *= b | a = a * b | |
/= | a /= b | a = a / b | |
%= | a %= b | a = a % b | |
&= | a &= b | a = a & b | More Info |
|= | a |= b | a = a | b | More Info |
^= | a ^= b | a = a ^ b | More Info |
>>= | a >>= b | a = a >> b | More Info |
>>>= | a >>>= b | a = a >>> b | |
<<= | a <<= b | a = a << b | More Info |
Note: >>>= is just like the >>= operator, except that the bits shifted in on the left are always zero.
Scala Comparison operators
Comparison operators are used to compare values of two operands. It returns true when values matches and returns false when values does not match.
Operator | Description |
---|---|
== | Equal |
!= | Not equal |
> | Greater than |
< | Less than |
>= | Greater than or equal to |
<= | Less than or equal to |
Example
Scala Logical operators
Logical operators are used to combine two or more conditions.
Operator | Name | Description |
---|---|---|
&& | Logical AND | Returns true when all conditions are true |
|| | Logical OR | Returns true when any of the conditions is true |
! | Logical NOT | Returns true when given conditions is not true |
More Info
Scala Bitwise operators
Bitwise operators are used to perform bitwise operations on two operands.
Operator | Name | Description | More Info |
---|---|---|---|
& | AND | Returns 1 if both bits at the same position in both operands are 1, else returns 0. | More Info |
| | OR | Returns 1 if one of two bits at the same position in both operands is 1, else returns 0. | More Info |
^ | XOR | Returns 1 if only one of two bits at the same position in both operands is 1, else returns 0. | More Info |
~ | NOT | Reverse all the bits. | More Info |
>> | Right shift | The left operand is moved right by the number of bits present in the right operand. | More Info |
>>> | Right shift with Zero | This operator is just like the >> operator, except that the bits shifted in on the left are always zero. | |
<< | Left shift | The left operand value is moved left by the number of bits present in the right operand. | More Info |
Scala Operators Precedence
Operator precedence (order of operations) is a collection of rules that reflect conventions about which procedures to perform first in order to evaluate a given expression.
For example, multiplication has higher precedence than addition. Thus, the expression 1 + 2 × 3 is interpreted to have the value 1 + (2 × 3) = 7, and not (1 + 2) × 3 = 9. When exponent is used in the expression, it has precedence over both addition and multiplication. Thus 3 + 52 = 28 and 3 × 52 = 75.
The following table lists the precedence and associativity of Scala operators. Operators are listed top to bottom, in descending precedence. Operators with higher precedence are evaluated before operators with relatively lower precedence. When operators have the same precedence, associativity of the operators determines the order in which the operations are performed.
Precedence | Operator | Description | Associativity |
---|---|---|---|
14 | () [] | Postfix | Left to Right |
13 | ! ~ | Unary operators - Logical AND, Bitwise NOT | Right to Left |
12 | * / % | Multiplication, Division, Remainder | Left to Right |
11 | + - | Addition, Subtraction | |
10 | << >> >>> | Bitwise left shift, right shift and unsigned right shift | |
9 | < <= > >= | Less than, Less than or equal, Greater than, and Greater than or equal | |
8 | == != | Equality and Inequality | |
7 | & | Bitwise AND | |
6 | ^ | Bitwise XOR | |
5 | | | Bitwise OR | |
4 | && | Logical AND | |
3 | || | Logical OR | |
2 | = | Direct assignment | Right to Left |
+= -= *= /= %= | Compound assignment by sum, difference, product, quotient and remainder | ||
<<= >>= | Compound assignment by Bitwise left shift and right shift | ||
&= ^= |= | Compound assignment by Bitwise AND, XOR and OR | ||
1 | , | Comma (separate expressions) | Left to Right |