Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Binary operators act on two operands in an expression. The binary operators are:
- 
Multiplication (*)
Division (/)
Modulus (%)
 - 
Addition ()
Subtraction (–)
 - 
Right shift (>>)
Left shift (<<)
 Relational and equality operators
Less than (<)
Greater than (>)
Less than or equal to (<=)
Greater than or equal to (>=)
Equal to (==)
Not equal to (!=)
- 
Bitwise AND (&)
Bitwise exclusive OR (^)
Bitwise inclusive OR (|)
 - 
Logical AND (&&)
Logical OR (||)
 - 
Assignment (=)
Addition assignment (+=)
Subtraction assignment (–=)
Multiplication assignment (*=)
Division assignment (/=)
Modulus assignment (%=)
Left shift assignment (<<=)
Right shift assignment (>>=)
Bitwise AND assignment (&=)
Bitwise exclusive OR assignment (^=)
Bitwise inclusive OR assignment (|=)
 Comma Operator (,)