PG 2.8 Exceptions Flashcards

1
Q

verschiedene Fälle der kontrollierten Exceptions

A
  • Try-catch-Anweisung: fängt Exceptions ab und “behandelt” sie
  • Throw-Anweisung: “wirft” eine neue Exception
  • Throws-Anweisung: signalisiert, dass eine Methode Exceptions werfen kann => Weitergabe
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Beispiel einer eigenen try-catch Anweisung mit finally

A

int erg;
try {
if(zahl2 == 0){
throw new DivisionByZeroException();
}
erg = zahl1 / zahl2;
return erg;
}
catch(DivisionByZeroException e){
System.out.println(“Null Teilung ist nicht erlaubt”);
e.printStackTrace();
}
finally{
System.out.println(“Rechnung wurde durchgeführt. Ergebnis: “);
}
return 0;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Beispiel einer eigenen Exception Klasse

A

public class DivisionByZeroException extends Exception{
public DivisionByZeroException(){
super(“Division by zero ist not allowed”);
}
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Java kennt 2 verschiedene Arten von Ausnahmesituationen

A

-Checked Exceptions: alle Exceptions, die nicht von RuntimeException abgeleitet sind, Compiler prüft
-Unchecked Exceptions: alle Exceptions, die von RuntimeException abgeleitet sind, Compiler prüft nicht => man braucht auch keine try-catch oder throws

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Exceptions abfangen oder weitergeben?

A

In den meisten Fälle ist es sinnvoller, Exceptions weiterzugeben. Abfangen sollte man Exceptions nur, wenn man den auslösenden Fehler lokal korrigieren kann.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly