Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能重新抛出被捕获的异常
catch(...)
堵塞?
throw没有操作数会重新抛出“当前异常”。
throw
就是这样。
catch(...) { throw; }