通常情况下,我必须输入类似
的内容if(a == x || b == x) {...}
但是我看到当使用try / catch块时,你可以做这样的事情:
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch(ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {}
我是否可以使用等式语句做类似的事情,比如
if((a | b) == x) {...}