gpt4 book ai didi

c++ - "set_unexpected"在 VC2010 中不起作用?

转载 作者:搜寻专家 更新时间:2023-10-31 01:14:38 32 4
gpt4 key购买 nike

我用的是VC2010,写了下面的代码来测试“set_unexpected”函数。

#include <iostream>
#include <exception>

void my_unexpected_handler()
{
std::cout << "unexpected handler" << std::endl;
}

int _tmain(int argc, _TCHAR* argv[])
{
set_unexpected(my_unexpected_handler);

throw 1;

return 0;
}

然而,“my_unexpected_handler”从未被调用(该字符串未打印到控制台,我试图在 my_unexpected_handler 中设置断点,但没有遇到)。

我的代码有什么问题?

谢谢


对不起,我误解了意外异常。但是,即使我将代码更改为以下

#include <iostream>
#include <exception>

void my_unexpected_handler()
{
std::cout << "unexpected handler" << std::endl;
}

void func() throw(int)
{
throw 'h';
}

int _tmain(int argc, _TCHAR* argv[])
{
std::set_unexpected(my_unexpected_handler);

func();

return 0;
}

还是不行?也就是说,不会调用“my_unexpected_handler”。

最佳答案

您可能没有做错任何事。您正在使用 visual studio 2010,并且该编译器不支持异常规范。好吧,它会使用它们检查代码的语法,但不会在运行时检查异常类型。

参见 http://msdn.microsoft.com/en-us/library/wfa0edys(v=vs.100).aspx

这通常不被认为是一个问题,因为异常规范通常被认为没有用,实际上在当时的 c++11 标准中已被弃用

关于c++ - "set_unexpected"在 VC2010 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11068888/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com