Operators Flashcards
prefix increment (++i)
i is incremented by 1 and then assigned to a value
postfix increment (i++)
i is assigned to a value and then incremented by 1
prefix decrement (–i)
i is decremented by 1 and then assigned to a value
postfix decrement (i–)
i is assigned to value and then decremented by 1
addition assignment (a += b)
a = a + b
subtraction assignment (a -= b)
a = a - b
multiplication assignment (a *= b)
a = a * b
division assignment (a /= b)
a = a / b
modulo assignment (a %= b)
a = a % b
bitwise AND assignment (a &= b)
a = a & b
bitwise OR assignment (a |= b)
a = a | b
bitwise XOR assignment (a ^= b)
a = a ^ b
bitwise left shift assignment (a
a = a
bitwise right shift assignment ( a»_space;= b)
a = a»_space; b
Java ternary conditional
result = testCondition ? value1 : value2
C ternary conditional
if (a > b) { result = x; } else { result = y; }
OR
result = a > b ? x : y;
logical left shift assignment (a
a = a
logical right shift assignment (a»_space;>= b)
a = a»_space;>b
difference between an arithmetic shift and a logical shift?
An arithmetic shift is a bitwise operation that shifts all of the bits of its operand; every bit in the operand is simply moved a given number of bit positions, and the vacant bit-positions are filled in. Instead of being filled with all 0s, as in logical shift, when shifting to the right, the leftmost bit (usually the sign bit in signed integer representations) is replicated to fill in all the vacant positions (this is a kind of sign extension).
Unlike an arithmetic shift, a logical shift does not preserve a number’s sign bit or distinguish a number’s exponent from its mantissa; every bit in the operand is simply moved a given number of bit positions, and the vacant bit-positions are filled in, usually with zeros.
Subtract two numbers without using arithmetic operators
int subtract(int x, int y) { // Iterate till there is no carry while (y != 0) { // borrow contains common set bits of y and unset // bits of x int borrow = (~x) & y;
// Subtraction of bits of x and y where at least // one of the bits is not set x = x ^ y;
// Borrow is shifted by one so that subtracting it from // x gives the required sum y = borrow