c – 类构造函数中boost :: shared_ptr的默认值

前端之家收集整理的这篇文章主要介绍了c – 类构造函数中boost :: shared_ptr的默认值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有类
class A{
    public:
    A(int a,boost::shared_ptr<int> ptr){
        // whatever!
    }
};

我的问题是,该ptr的默认值是多少?我想使用这个类创建一个实例

A myA(5);

当然我知道我可以使用一个参数创建另一个构造函数,但是我正在寻找类似的东西

A(int a,boost::shared_ptr<int> ptr = WAT?)

可能吗?目前我使用的是两种构造方法,但是这样做是非常好的.

解决方法

#include <boost/make_shared.hpp>

A(int a,boost::shared_ptr<int> ptr = boost::make_shared<int>())

检查http://www.boost.org/doc/libs/1_43_0/libs/smart_ptr/make_shared.html

原文链接:https://www.f2er.com/c/113123.html

猜你在找的C&C++相关文章