Soweit ich weiß, kann man eine Gleitkommazahl durch 0 teilen (das Ergebnis ist dann NaN).
Und naja, Java meckert ziemlich viel rum:
Code:
int answer() {
if (Math.random() < 0.5) { return 0; }
}
missing return statement
Code:
int answer() throws
Exception {
throw new
Exception();
return 42;
}
unreachable statement
MfG
Fabian