这在C++中被认为是很好的编程实践:
try { // some code } catch(someException) { // do something } catch (...) { // left empty <-- Good Practice??? }
c++ exception-handling
c++ ×1
exception-handling ×1