如何克服make_shared constness

时间:2012-07-31 14:31:35

标签: c++ boost shared-ptr

我遇到了一些问题,无法确定什么是正确的解决方案。

以下是插图的代码示例:

#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&amp;,const A2&amp;,...”,如下所示:

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

我可以使用boost :: shared(new ...)或重写构造函数来进行const引用,但似乎不应该这样。

Thnx提前!

1 个答案:

答案 0 :(得分:11)

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

ptr = boost::make_shared< TestClass >( boost::ref( c ), c );