gpt4 book ai didi

c++ - 将基类 vector 传递给采用父类(super class) vector 的函数

转载 作者:行者123 更新时间:2023-11-27 23:50:06 25 4
gpt4 key购买 nike

在我的代码中,我有一个 SuperType它有两个子类型......现在我有一个std::vector<SubTypeA>&并且需要将其传递给一个函数,该函数遍历 vector 并从 SuperType 调用 函数...我需要对两种子类型都执行此操作。

(父类(super class)型还不是虚拟的,但我需要在某个时候使它成为虚拟的,因为它只是两个子类型的公共(public)部分,不能有它的实例)

这是一个最小的(非)工作示例:

#include <vector>
struct Super {
// stuff and functions
};
struct SubTypeA : public Super {
// stuff and functions
};

void func(const std::vector<Super>& sup) {
for (auto& elem: sup) {
// do things
}
return;
}

int main() {
std::vector<SubTypeA> v; // I get this from another place
std::vector<SubTypeA>& my_variable = v; // this is what I have in my code
func(my_variable); // does not work.
}

传递迭代器也是一种解决方案。


旁注:我得到 my_variable来自另一种类型:

struct SomeContainer {
std::vector<SubTypeA> a;
std::vector<SubTypeB> b;
}

而且我不想更改容器,所以 std::vector<SubTypeA>&是的。

最佳答案

在 C++ 中引用和指针类型 SuperSubTypeA是协变的,但是 std::vector<Super>std::vector<SubTypeA>不是。您可以使用指针 vector 或对基类的引用来实现您想要的:

#include <vector>
struct Super {
// stuff and functions
};
struct SubTypeA : public Super {
// stuff and functions
};

void func(std::vector<std::reference_wrapper<Super>>& sup) {
for (Super& elem: sup) {
// do things
}
return;
}

int main() {
std::vector<SubTypeA> v; // I get this from another place
// using vector of references to base class
std::vector<std::reference_wrapper<Super>> my_variable(v.begin(), v.end());

func(my_variable); // does not work.
}

根据评论中的建议更新

关于c++ - 将基类 vector 传递给采用父类(super class) vector 的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47176028/

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