Return to top
Return to top
Return to top
Return to top
Return to top
Return to top
Return to top
Note: class variable or class method means static variable or static method.
Return to top
Return to top
Return to top
Return to top
Return to top
Java file layout
Order sensitive if all applicable.
Mostly usable predefined packages
Compile and run a program
Java comments
Java types
Java keywords
Class construction
Initialization
Operators
Selection and Loop
Variable scope
Arrays
int [] i1;
int i2[];
int i3[] = {1,2,3,4,5};
int[] ary = new int[5];
int len = ary.length;//len = 5;
int s = num[idx];
int [][] i = new int[2][4];
System.arraycopy(src,stPos, des, stPos, src.length);