Object Pascal - operators
Operators perform an operation between the operands, this operation can be mathematical, logical, or bitwise.Arithmetic operators
Are used to perform mathematical operations. the following are basic operations between the arithmetic operators:
Object Pascal
8 + 12 // 20
100 - 2 // 98
5 * 5 // 25
50 / i // 2.5
70 div 8 // 8
70 mod 8 // 6
Logical
Three or four logical operations are available, exactly how much it depends on the particular programming language that we use. with these operations, we can solve any logical task or condition. these logical conditions are for example connections of comparing values according to certain rules, testing values. logical operations are mainly used in the execution of conditional statements.
Object Pascal
a and b
a or true
not a
Bitwise
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.
Object Pascal
2 shl 2
2 shr 2
$ff and $05 // 0x05
$01 or $02 // 0x03
not 2
$1A xor $1A
Relational
The main use of the relational operators is in control of conditional statements. thanks to these, we can decide which direction to continue the conditional statements, or for example, how many iterations of the cycle need to perform.
Object Pascal
5 < 3 // true
x > 3.14 //
y <= x // ...
$ff >= y // ...
x = 6
y <> 25
Assignment
Examples - Object Pascal
Object Pascal
Other pieces of example codes:128 shl (j shl(3 + i))
10 >a and a>5
10 >a or a<5
y:= 1025 div 8;
z := (x+y+30)+3;
32 shr ($A shr 2)
Operators in another programming language: