我有一个带有std :: string的类。类本身是完全正常的,但问题是我有另一个类,其中包含第一个的std :: vector。关键是,在第二个类的构造函数中,我从文件中加载了一些名称,我尝试将第一个类的对象push_back到第二个类中的向量。第一类的对象是完美构造的(我尝试在其中读取std :: string)但是当它们被推到向量时,字符串就会消失!我尝试过使用emplace_back,但这也没有用。这是代码:
#include <vector>
#include <iostream>
#include <fstream>
class CItemTemplate {
protected:
char id;
std::string name;
public:
CItemTemplate ():id(0),name(""){};
CItemTemplate (char _id, std::string _name) : id(_id){name = _name;};
CItemTemplate (const CItemTemplate& pattern) {id = pattern.GetID();}
~CItemTemplate (){};
char GetID() const {return id;};
std::string GetName() {return name;}
//sf::Texture* GetTexture() const {return tekstura;}
};
class CItemSystem {
std::vector<CItemTemplate> item_list;
public:
CItemSystem(std::string fpthItems);
~CItemSystem(){}
void list() {
for (unsigned int i = 0; i < item_list.size(); ++i) {
std::cout << (int)item_list[i].GetID() << " " << item_list[i].GetName() << std::endl << std::endl;
}
}
};
CItemSystem::CItemSystem(std::string fpthItems){
std::ifstream file;
file.open(fpthItems);
if (!file.is_open()) std::cout << "error!\n";
char name[64];
CItemTemplate tempitem;
item_list.push_back(CItemTemplate());
std::cout << "loading items...\n\n";
for (int i = 1;!file.eof();++i) {
file.getline(name,64,'|');
std::cout << CItemTemplate(i,(std::string)name).GetName() << std::endl << std::endl;
item_list.push_back(CItemTemplate(i,(std::string)name));
}
file.close();
}
int main()
{
CItemSystem ItemSystem("items.txt");
std::cout << "writing list of items...\n\n";
ItemSystem.list();
return 0;
}
};
CItemSystem::CItemSystem(std::string fpthItems){
std::ifstream file;
file.open(fpthItems);
if (!file.is_open()) std::cout << "error!\n";
char name[64];
CItemTemplate tempitem;
item_list.push_back(CItemTemplate());
std::cout << "loading items...\n\n";
for (int i = 1;!file.eof();++i) {
file.getline(name,64,'|');
std::cout << CItemTemplate(i,(std::string)name).GetName() << std::endl << std::endl;
item_list.push_back(CItemTemplate(i,(std::string)name));
}
file.close();
}
CItem CItemSystem::Item(char id) {
return (CItem(item_list[id]));
}
int main()
{
CItemSystem ItemSystem("items.txt");
CItem przedmiota = ItemSystem.Item(2);
CItem przedmiotb = ItemSystem.Item(4);
std::cout << "writing list of items...\n\n";
ItemSystem.list();
return 0;
}
结果:
加载项目......
瓶
插头
装瓶
水
未插入的一瓶水
用水塞住
一瓶水
撰写项目清单......
0
1
2
3
4
5
6
7
8
przedmioty.txt文件:
瓶子|插头|塞瓶|水|塞瓶水|塞水|瓶装水|
答案 0 :(得分:2)
您的副本构造函数(采用const CItemTemplate&
的构造函数)实现不正确:它不会复制名称。