5

我面临一个问题,无法确定正确的解决方案是什么。

这是用于说明的代码示例:

#include <boost/make_shared.hpp>
#include <boost/shared_ptr.hpp>

class TestClass{
    public:
        int a;
        TestClass(int& a,int b){};
    private:
        TestClass();
        TestClass(const TestClass& rhs);
};

int main(){
    int c=4;
    boost::shared_ptr<TestClass> ptr;

//NOTE:two step initialization of shared ptr    

//     ptr=boost::make_shared<TestClass>(c,c);// <--- Here is the problem
    ptr=boost::shared_ptr<TestClass>(new TestClass(c,c));

}

问题是我无法创建 shared_ptr 实例,因为 make_shared 获取并将参数传递给 TestClass 构造函数,const A1&, const A2&,...如文档所述:

template<typename T, typename Arg1, typename Arg2 >
    shared_ptr<T> make_shared( Arg1 const & arg1, Arg2 const & arg2 );

我可以欺骗它boost::shared(new ...)或重写构造函数以获取const引用,但这似乎不是正确的解决方案。

先感谢您!

4

1 回答 1

11

您可以使用boost::ref来包装参数,即:

ptr = boost::make_shared< TestClass >( boost::ref( c ), c );
于 2012-07-31T14:35:55.210 回答