我正在尝试编译此源代码:

// exception_set_unexpected.cpp
// compile with: /c /EHsc
#include<exception>
#include<iostream>

using namespace std;

void unfunction( )
{
   cout << "I'll be back." << endl;
   terminate( );
}

int main( )
{
   unexpected_handler oldHand = set_unexpected( unfunction );
   unexpected( );
}

如何在Visual Studio 2010中添加compile with: /c /EHsc选项?

最佳答案

右键单击项目->属性->配置属性-> C/C++->命令行

将您的标志放在命令行中

07-24 09:46