Java에서는 다음과 같이하고 싶습니다.
try {
...
} catch (/* code to catch IllegalArgumentException, SecurityException,
IllegalAccessException, and NoSuchFieldException at the same time */) {
someCode();
}
...대신에:
try {
...
} catch (IllegalArgumentException e) {
someCode();
} catch (SecurityException e) {
someCode();
} catch (IllegalAccessException e) {
someCode();
} catch (NoSuchFieldException e) {
someCode();
}
이것을 할 수있는 방법이 있습니까?
bitwise or
(|
) 연산자를? 쉼표 또는 더 유사한 의미를 가진 연산자logical or
(||
)를 사용하지 않겠습니까?