使用 gcc 4.6.2,如果构造函数抛出异常, make_shared() 会给出无用的回溯(显然是由于一些重新抛出)。我正在使用 make_shared() 来节省一些输入,但这是显示停止器。我创建了一个允许正常回溯的替代make_shrd() 。我正在使用 gdb 7.3.1。
我担心的是:
- make_shared() 下的不良回溯不知何故是我自己的错
- 我的替代品 make_shrd() 会给我带来一些微妙的问题。
这是一个演示:
#include <memory>
#include <stdexcept>
using namespace std;
class foo1
{
public:
foo1( const string& bar, int x ) :m_bar(bar), m_x(x)
{
throw logic_error( "Huh?" );
}
string m_bar;
int m_x;
};
class foo2
{
public:
foo2( const string& bar, int x ) : m_foo1(bar,x)
{}
foo1 m_foo1;
};
// more debuggable substitute for make_shared() ??
template<typename T, typename... Args>
std::shared_ptr<T> make_shrd( Args... args )
{
return std::shared_ptr<T>( new T(args...));
}
int main()
{
auto p_foo2 = make_shared<foo2>( "stuff", 5 ); // debug BAD!!
// auto p_foo2 = make_shrd<foo2>( "stuff", 5 ); // debug OK
// auto p_foo2 = new foo2( "stuff", 5 ); // debug OK
// auto p_foo2 = shared_ptr<foo2>(new foo2( "stuff", 5 )); // debug OK
return (int)(long int)p_foo2;
}
编译:
g++ -g -std=c++0x -Wall -Wextra main.cpp
调试:
gdb a.out
make_shared() 回溯是垃圾,不会显示堆栈到异常点。所有其他选项都提供了合理的回溯。
提前感谢您的帮助和建议。