gpt4 book ai didi

c++ - 为什么我不能从函数返回 Boost::Scoped_ptr?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:54:17 27 4
gpt4 key购买 nike

所以我尝试围绕 boost.extension 函数创建一些包装器来创建类。所以我创建了一个函数:

template <class BaseClass, class ConstructorType>
boost::scoped_ptr<BaseClass> get_class (shared_library & lib, std::string class_name, ConstructorType value ) {
map<string, factory<BaseClass, ConstructorType> > lib_factories = get_factories<BaseClass, ConstructorType>(lib);
return boost::scoped_ptr<BaseClass> lib_class(lib_factories[class_name].create(value));
}

调用:

template <class BaseClass, class ConstructorType>
map<string, factory<BaseClass, ConstructorType> > get_factories (shared_library & lib) {
type_map lib_types;
if (!lib.call(lib_types)) {
cerr << "Types map not found!" << endl;
cin.get();
}

map<string, factory<BaseClass, ConstructorType> > lib_factories(lib_types.get());
if (lib_factories.empty()) {
cerr << "Producers not found!" << endl;
cin.get();
}
return lib_factories;
}

但最后一个并不是那么重要。重要的是 - 我无法获得我的函数 return=(

我尝试这样:

boost::scoped_ptr<PublicProducerPrototype> producer = get_class<PublicProducerPrototype, int>(simple_producer, "simpleProducer", 1);

我也试过:

boost::scoped_ptr<PublicProducerPrototype> producer ( get_class<PublicProducerPrototype, int>(simple_producer, "simpleProducer", 1));

但编译器告诉我 C2248它不能调用 boost::scoped_ptr<T> 的一些私有(private)成员

那么如何使我的返回...可返回//如何接收?

最佳答案

boost::scoped_ptr 是不可复制的。因为您不能复制 scoped_ptr,所以您也不能返回一个(按值返回一个对象要求您能够复制它,至少在 C++03 中是这样)。如果需要返回智能指针拥有的对象,则需要选择不同类型的智能指针。

如果您的编译器支持 std::unique_ptr,您应该改用它(因为看起来您使用的是 Visual C++,Visual C++ 2010 支持 std::unique_ptr );否则,请考虑使用 std::auto_ptr{std,std::tr1,boost}::shared_ptr,具体取决于您的具体用例。

关于c++ - 为什么我不能从函数返回 Boost::Scoped_ptr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5724119/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com