Operator Description Associtivity << bitwise left shift - - PDF document

operator description associtivity
SMART_READER_LITE
LIVE PREVIEW

Operator Description Associtivity << bitwise left shift - - PDF document

Operator Description Associtivity << bitwise left shift >> bitwise right shift (sign extend) [ ] indexing >>> bitwise right shift (zero pad) member selection . <, >, <=, numeric


slide-1
SLIDE 1

Operator Description Associtivity [ ] . ( ) indexing member selection method invocation º º º ++, -- ! ~ +, - ( ) new instanceof auto increment and decrement logical negation bitwise complement unary grouping and casting

  • bject instantiation

class membership (boolean) » » » » » » » *, /, % multiplication, division, modulo º +, - addition and subtraction º

<< >> >>> bitwise left shift bitwise right shift (sign extend) bitwise right shift (zero pad) º º º <, >, <=, >= numeric relationships º ==, != equality or inequality º & bitwise and º ^ bitwise exclusive-or º | bitwise or º &&, & logical and º ||, | logical or º ?: conditional expression º =, op=

  • peration and assignment

»

slide-2
SLIDE 2
slide-3
SLIDE 3
slide-4
SLIDE 4