BOOST_THROW_EXCEPTION导致Abort Trap

时间:2011-11-24 12:13:51

标签: c++ exception boost

我正在尝试使用boost::exception并将我的原型代码压缩到Boost exception tutorial中的示例,但是当使用BOOST_THROW_EXCEPTION宏运行代码时,我会从程序

#include <iostream>
#include <boost/exception/all.hpp>

typedef boost::error_info<struct tag_my_info,int> my_info;
struct my_error: virtual boost::exception, virtual std::exception { };

void f()  {
  BOOST_THROW_EXCEPTION(my_error() << my_info(42));

  // Uncomment the below (and comment the above) for the program to work
  //throw my_error() << my_info(42);
}

int main(int argc, char** argv)  {
  try  {
    f();
  }
  catch(my_error& x)  {
    if(int const* mi = boost::get_error_info<my_info>(x))  {
      std::cout << "My info: " << *mi << std::endl;
    }
  }

  return 0;
}

使用BOOST_THROW_EXCEPTION宏运行代码:

$ ./a.out 
Abort trap

如果评论说,我交换代码,一切都很好

$ ./a.out 
My info: 42

以下是f()

的g ++预处理器的输出
void f() {
  ::boost::exception_detail::throw_exception_(my_error() << my_info(42),__PRETTY_FUNCTION__,"main.cpp",14);
}

软件版本为:

$ g++ -v
Using built-in specs.
Target: x86_64-apple-darwin10
Thread model: posix
gcc version 4.4.6 (GCC) 

$ port list boost
boost                          @1.47.0         devel/boost

我使用MacPorts提供的工具使用OSX SL。我已经仔细检查了g ++搜索路径,并且只有一个boost hpp文件的副本,那就是属于上述boost程序包的那些。

我不知道为什么要调用中止陷阱。我承认我对C ++很新。

1 个答案:

答案 0 :(得分:0)

问题是由使用MacPorts版本的g ++引起的。 MP系统中有大量与例外和中止陷阱相关的门票(以及Google上的大量示例)。

使用XCode附带的g ++版本可以解决这个问题。