📜  c++ 代码示例中的 catch(...) 是什么意思

📅  最后修改于: 2022-03-11 14:44:45.101000             🧑  作者: Mango

代码示例1
catch(...). catches all the throw/error
catch(...) should be present at the last of all the catches so if any throw is not present in above catches
it will go to catch(...)