Java) List/ Stack/ Arrays Comparator/ Comparable Iterator
This post was migrated from Tistory. You can find the original here. List ArrayList(Vector) When you remove an element, every element below it gets copied up one slot to overwrite the remo...
This post was migrated from Tistory. You can find the original here. List ArrayList(Vector) When you remove an element, every element below it gets copied up one slot to overwrite the remo...
This post was migrated from Tistory. You can find the original here. java.lang package Object The Object class is the ultimate ancestor of every class. By default, Object.equals() compares inst...
This post was migrated from Tistory. You can find the original here. static import import static java.lang.System.out; import static java.lang.Math.*; out.println(random()); A regular import ...
This post was migrated from Tistory. You can find the original here. Member Variable Initialization class InitTest{ int x; int y = x; // Member variables get a default value even without...
This post was migrated from Tistory. You can find the original here. type check Wrapper class type public static void main(String[] args) { String t1 = "TEST"; System.out.pr...
This post was migrated from Tistory. You can find the original here. What the JDK is made of JDK: the development kit, which includes Java itself JRE: the Java runtime environment How it runs...