不同类的对象在一个单一的矢量? [英] Objects of different classes in a single vector?

查看:168
本文介绍了不同类的对象在一个单一的矢量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的代码中,我有一组对象:

In my code, I have a set of objects:

class Sphere { ...
class Plane { ...
...

我需要使用它们的集合它们将具有不同类型)在向量中。如何将不同类的对象添加到向量

And I need to use a collection of them (they will all have different types) in a vector. How would I add objects of different classes to a vector?

推荐答案

球体和平面需要一个共同的基本类型,或者你的向量需要由 void * 的组成。

Sphere and Plane would need a common base type, or your vector would need to be composed of void*'s.

通用基本类型(更好):

class Shape { ... };
class Sphere : public Shape { ... };
class Plane : public Shape { ... };

std::vector<Shape*> shapes;

void * (不是很大):

or void*'s (not great):

std::vector<void*> shapes;

这篇关于不同类的对象在一个单一的矢量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆