Moin himitsu,
[...]sowas hätte mir auch gefallen[...]
Joar manchmal ganz nett. Und da könnte die Compiler magic auch das in das "alte" Format umwandeln.
@xZise: Was passiert denn, wenn in Catch eine
Exception auftritt?
Beurteile es selber:
Code:
C:\Users\xZise\Desktop\löschen>"C:\Program Files\Java\jdk1.6.0_21\bin\javac.exe"
Main.java
C:\Users\xZise\Desktop\löschen>java Main
Throw an
exception.
Exception caught. Throw another
exception!
Now I'm in the finally block.
Exception in thread "main" java.lang.ArithmeticException: / by zero
at Main.main(Main.java:10)
Code:
public class Main {
public static void main(String[] a) {
try {
System.out.println("Throw an
exception.");
int i = 2 / 0;
} catch (
Exception e) {
System.out.println("
Exception caught. Throw another
exception!");
int j = 2 / 0;
} finally {
System.out.println("Now I'm in the finally block.");
}
System.out.println("Good bye.");
}
}
MfG
Fabian