SLIDE 1
Java Element Naming Strategy package all lowercase letters and - - PowerPoint PPT Presentation
Java Element Naming Strategy package all lowercase letters and - - PowerPoint PPT Presentation
Java Element Naming Strategy package all lowercase letters and numbers class start with uppercase, rest mixed, no underscores method start with lowercase, rest mixed, no underscores instance variables start with lowercase, rest mixed, no
SLIDE 2
SLIDE 3
SLIDE 4
SLIDE 5
SLIDE 6
SLIDE 7
SLIDE 8
SLIDE 9
SLIDE 10
SLIDE 11
SLIDE 12
SLIDE 13
Java Element Naming Strategy package all lowercase letters and numbers class start with uppercase, rest mixed, no underscores method start with lowercase, rest mixed, no underscores instance variables start with lowercase, rest mixed, no underscores named constants uppercase letters and underscores
SLIDE 14
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 º
SLIDE 15
<< >> >>> 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 16
SLIDE 17
SLIDE 18
SLIDE 19
SLIDE 20
SLIDE 21
SLIDE 22
SLIDE 23
SLIDE 24