Coggle requires JavaScript to display documents.
1/7 = 0.142857142857142857142857142857142857142857...
1/10 = binary 0.0001100110011001100110011001100110...
public class Logger { static void log(Object o) { /* code */ } // line n1 static void log(Long[] lwa) { /* code */ } // line n2 public static void main(String[] args) { log(new Integer[]{}); long[] arr = null; log(arr); log(null); } }
try { ... } catch (Exception e1) { System.out.println("E1"); } catch (ArithmeticException e1) { System.out.println("E2"); }