gpt4 book ai didi

vector 中不存在 C++ 字符串成员变量

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

我正在创建一个 vector ,其中包含指向基类的指针。在此 vector 中,我动态存储指向包含一些成员变量的派生类的指针,其中之一是字符串变量名。

#include "stdafx.h"
#include <iostream>
#include <vector>
#include <string>
#include <cstdlib>

bool hasDirection = false;
bool hasDiameter = false;
int direction;
float diameter;
int starDimension = 0;
int animalDimension = 0;
int fishDimension = 0;
class MovingObject
{
protected:
std::string name;
int direction;
float diameter;
int dimension;
float movingSpeed;

public:
std::string getName(){ return name;};
int getDirection(){ return direction;};
float getDiameter(){ return diameter;};
float getMovingSpeed(){ return movingSpeed;};
int getDimension(){ return dimension;};
void setName(std::string v){ name = v;};
void setDirection(int d){ direction = d;};
void setDiameter(float f){ diameter = f;};
void setMovingSpeed(float s){ movingSpeed = s;};
void setDimension (int d){ dimension = d;};
virtual void PrintContents()=0;
};

static std::vector<MovingObject*> data;

class starObject : public MovingObject
{
public:
void PrintContents()
{
std::cout << "(" << getName() << "," << getDiameter() << "," << getDirection() << ")";
}
};

class animalObject : public MovingObject
{
public:
void PrintContents()
{
std::cout << "(" << getName() << "," << getDiameter() << "," << getDirection() << ")";
}
};

class fishObject : public MovingObject
{
public:
void PrintContents()
{
std::cout << "(" << getName() << "," << getDiameter() << "," << getDirection() << ", [" << getDimension() << "], " << getMovingSpeed() << ")";
}
};

我后来在主函数中设置了所有这些成员变量。问题是当我尝试输出成员变量的内容时,除了字符串名称外,所有成员变量都显示出来了。现在,我已经检查以确保在调用 PrintContent() 方法之前设置了字符串,并且它显示该值在 vector 中。但是,当我调试代码时,该值不再存在,而是包含一个空字符串。

有更好的 c++ 知识的人可以向我解释为什么会这样吗?这是主类:

int main()
{
std::string type;
Reader reader;

while (!std::cin.eof())
{
try
{
std::string type;
std::cin >> type;

if (type =="int")
{
reader.ReadDirection();
}
else if (type =="float")
{
reader.ReadDiameter();
}
else if (type == "string")
{
std::string name;
std::cin >> name;

if (hasDirection && hasDiameter)
{
int dimension;
if (diameter > 0 && diameter < 10)
{
//fish
fishObject fish;
fish.setName(name);
fish.setDiameter(diameter);
fish.setDirection(direction);

dimension = fishDimension;
fishDimension += 50;
fish.setDimension(dimension);
fish.setMovingSpeed(0.1);
data.push_back(&fish);
}
else if (diameter >= 10 < 500)
{
//animal
animalObject animal;
animal.setName(name);
animal.setDiameter(diameter);
animal.setDirection(direction);

dimension = animalDimension;
animalDimension += 800;
animal.setDimension(dimension);
animal.setMovingSpeed(5.0);
data.push_back(&animal);
}
else if (diameter >=500)
{
//star
starObject star;
star.setName(name);
star.setDiameter(diameter);
star.setDirection(direction);

dimension = starDimension;
starDimension += 5000;
star.setDimension(dimension);
star.setMovingSpeed(30.0);
data.push_back(&star);
}

}
else
{
throw (IncompleteData(name));
}
}
}
catch (IncompleteData e)
{
std::cerr << "No diameter or direction given for object " << e.objectName << "\n";
}
}

最佳答案

您推送到 data 的对象 vector 是局部的,因为它们是在 if/else block 中声明的(参见 fishanimal 的声明)。

当你把这样一个对象的地址压入vector时,它会继续指向局部对象,局部对象在局部作用域结束时不复存在。您需要创建超出本地范围的对象。一种方法是在堆上创建本地对象的拷贝并将它们推送到 vector :

data.push_back(new fishObject(fish));

当然,这意味着您会发生内存泄漏,除非您确保在程序结束前的某个时间显式删除 vector 的元素。避免考虑这一点的通常建议是使用 std::unique_ptr<MovingObject> 的 vector 。而不是裸指针 vector 。

关于 vector 中不存在 C++ 字符串成员变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12792237/

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