Hình Ví dụ: class FinallyDemo { String name; int x,y; FinallyDemo(String s[]) { try{ name = new String("try catch finally demo"); x = (s[0]); y=(s[1]); (name); ("Ket qua "+x/y); } catch(ArithmeticException e) { ("Khong the chia 0!"); } finally { name = null; ("Xu ly khoi finally"); } | Hình Ví dụ class FinallyDemo String name int x y FinallyDemo String s try name new String try catch finally demo x s 0 y s 1 System. name Ket qua x y catch ArithmeticException e Khong the chia 0 finally name null Xu ly khoi finally 41 sưu tẩm bời http Sưu tâm bởi public static void main String args new FinallyDemo args Kết quả 1 C MyJava Baitap java FinallyDemo 16 0 try catch finally demo Khong the chia 0 Xu ly khoi finally Kết quả 2 C MyJava Baitap java FinallyDemo 16 4 try catch finally demo Ket qua 4 Xu ly khoi finally Một số ngoại lệ thường gặp o RuntimeException o ArithmeticException o IllegalArgumentException o ArrayIndexOutOfBoundsException o NullPointerException o SecurityException o NoSuchElementException o ClassNotFoundException o AWTException o DataFormatException o SQLException o IOException o UnknownHostException o SocketException 42 sưu tẩm bời http Sưu tâm bởi o EOFException o MalformedURLException o FileNotFoundException o IllegalAccessException o NoSuchMethodException 43 sưu tẩm bời http Sưu tâm bởi