美文网首页
C++ exception

C++ exception

作者: 滩主 | 来源:发表于2020-07-21 08:19 被阅读0次

    __cxa_throw

    The function doing all the throw-magic! According to the ABI reference, once the exception has been created __cxa_throw will be called. This function will be responsible of starting the stack unwinding. An important effect of this: __cxa_throw is never supposed to return. It either delegates execution to the correct catch block to handle the exception or calls (by default) std::terminate, but it never ever returns.

    image.png

    https://www.cnblogs.com/catch/p/3604516.html

    相关文章

      网友评论

          本文标题:C++ exception

          本文链接:https://www.haomeiwen.com/subject/iexykktx.html