gpt4 book ai didi

c++ - 使用模板将std::shared_ptr 上载到std::shared_ptr

转载 作者:行者123 更新时间:2023-12-02 10:04:37 27 4
gpt4 key购买 nike

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

我想拥有一个在id和对象指针(C或D)之间映射的std::map,但是我在将make_shared输出分配给std::map上的条目时遇到了麻烦。

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

#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

最佳答案

您尝试的转换不在类(class)及其子级范围内。它不能工作,因为继承是非公开的。要解决此问题,请公开继承。或者,在成员函数内进行转换。

关于c++ - 使用模板将std::shared_ptr <Derived>上载到std::shared_ptr <Base>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60929415/

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