Tipe Data dan Exception di Java
Jim White
Java Developer
public static void main(String[] args) {
ArrayList<String> allStars = new ArrayList<String>();
allStars.add("Mays");
allStars.add("Aaron");
allStars.add("Ruth");
String last = allStars.get(3); // This will cause an exception
System.out.println(last);
}
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 3 out of
bounds for length 3
try {
// Pernyataan yang dijalankan dan diawasi untuk exception
}
try {
// Pernyataan yang dijalankan dan diawasi untuk exception
} catch (<Exception type> <variable name>) {
// Pernyataan saat exception terjadi
}
try {
ArrayList<String> allStars = new ArrayList<String>();
allStars.add("Mays");
allStars.add("Aaron");
allStars.add("Ruth");
String last = allStars.get(3); // Accessing an element that isn't there
System.out.println(last);
} catch (IndexOutOfBoundsException e) {
System.out.println("Oops - wrong index");
}
Oops - wrong index
catch untuk jenis pengecualian berbedacatch punya tipe dan variabel pengecualian sendiricatch berurutan hingga menemukan yang cocoktry {
ArrayList<String> nums
= new ArrayList<String>();
nums.add("one");
String last = nums.get(0);
Integer.valueOf(last);
System.out.println(last);
} catch (IndexOutOfBoundsException eIndex) {
System.out.println("Oops - wrong index");
} catch (NumberFormatException eValueOf) {
System.out.println(
"Oops - String not a number");
}
Oops - String not a number
catch (Exception variable){ } sebagai penangkap umumtry {
// Code to try
} catch (IndexOutOfBoundsException eIndex) {
System.out.println("Oops - wrong index");
} catch (NumberFormatException eValueOf) {
System.out.println("Oops - String not a number");
} catch (Exception e) { // Menangani semua pengecualian selain dua di atas
System.out.println("Something unplanned happened");
}
finally selalu dijalankan// Saat pengecualian terjadi
try {
Integer.valueOf("one");
} catch (NumberFormatException eValueOf) {
System.out.println("Oops");
} finally {
System.out.println("Doing cleanup");
}
Oops
Doing cleanup
// Saat tidak ada pengecualian
try {
Integer.valueOf("1");
} catch (NumberFormatException eValueOf) {
System.out.println("Oops");
} finally {
System.out.println("Doing cleanup");
}
Doing cleanup
Exception yang masuk ke blok catch berisi banyak informasi.getMessage() untuk pesan penyebab.getClass() untuk kelas/tipe Exception .printStackTrace() untuk menampilkan stack trace (slide berikut)public class ExceptionExample {
public static void main(String[] args) {
try {
Integer.valueOf("one");
} catch (NumberFormatException e) {
System.out.println(e.getMessage());
e.printStackTrace();
}
}
}
For input string: "one"
java.lang.NumberFormatException: For input string: "one"
at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
at java.base/java.lang.Integer.parseInt(Integer.java:661)
at java.base/java.lang.Integer.valueOf(Integer.java:988)
at foo/exceptions.ExceptionExample.main(ExceptionExample.java:7)
Tipe Data dan Exception di Java