boost库中是否有一些与C++1x的std::unique_ptr等效的类?我正在寻找的行为是能够拥有一个异常安全的工厂函数,就像这样…
std::unique_ptr<Base> create_base()
{
    return std::unique_ptr<Base>(new Derived);
}
void some_other_function()
{
    std::unique_ptr<Base> b = create_base();
    // Do some stuff with b that may or may not throw an exception...
    // Now b is destructed automagically.
}编辑:现在,我正在使用这个hack,这似乎是我目前所能得到的最好的…
Base* create_base()
{
    return new Derived;
}
void some_other_function()
{
    boost::scoped_ptr<Base> b = create_base();
    // Do some stuff with b that may or may not throw an exception...
    // Now b is deleted automagically.
}https://stackoverflow.com/questions/2953530
复制相似问题