In Java möchte ich so etwas tun:
try {
...
} catch (/* code to catch IllegalArgumentException, SecurityException,
IllegalAccessException, and NoSuchFieldException at the same time */) {
someCode();
}
...anstatt:
try {
...
} catch (IllegalArgumentException e) {
someCode();
} catch (SecurityException e) {
someCode();
} catch (IllegalAccessException e) {
someCode();
} catch (NoSuchFieldException e) {
someCode();
}
Gibt es eine Möglichkeit, dies zu tun?
bitwise or
(|
) neu definieren ? Warum nicht ein Komma oder den Operator verwenden, der eine ähnlichere Bedeutung hat, daslogical or
(||
)?