使用模板将标准::shared_ptr<Derived> 转换为标准::shared_ptr<Base>



我在继承链中有4个类:A->B->C,A->B->D,其中B是唯一的类模板。

我想要一个在id和对象指针(C或D(之间映射的std::映射,但我在将make_shared输出分配给std:映射上的一个条目时遇到了问题。

有趣的是,另一个类似的例子,但没有中间模板类,编译正常,所以我想这与此有关。

#include <iostream>
#include <map>
#include <memory>
class A
{
public:
int i;
protected:
A(int j) : i(j) {}
};
template <typename T>
class B : protected A
{
protected:
T t;
B(int i) : A(i) {}
};
class C : protected B<int>
{
public:
C(int i) : B(i) {}
};
class D : protected B<float>
{
public:
D(float i) : B(i) {}
};
int main()
{
std::map<std::string, std::shared_ptr<A>> map; // [id, object ptr]
map["c"] = std::make_shared<C>(0); // error here
map["d"] = std::make_shared<D>(1.0); // error here
for (auto i : map)
{
std::cout << i.first << i.second->i << std::endl;
}
return 0;
}

编译器错误:

main.cpp:37:37: error: no match for ‘operator=’ (operand types are ‘std::map<std::__cxx11::basic_string<char>, std::shared_ptr<A> >::mapped_type {aka std::shared_ptr<A>}’ and ‘std::shared_ptr<C>’)
map["c"] = std::make_shared<C>(0); // error

您尝试的转换在类及其子类之外。它无法工作,因为继承是非公共的。要修复它,请将继承公开。或者,在成员函数中进行转换。

相关内容

  • 没有找到相关文章

最新更新