在学校,我们正在学习如何在Visual Studio中使用c ++中的二进制文件。这段代码在Visual Studio 2005中完美运行,但在2010 - 2013版本中却没有。它给出了读取违规错误。所以我希望你们中的一个可以帮助我,因为即使我的老师也不知道什么是错的:(错误发生在阅读结束时。我尝试了不同的ifstream和ofstream方法,但没有成功。
我的代码:
#include <z:/Yoshi On My Mac/Google Drive/School/2013-2014/C-taal/headeryoshi.h>
#define B "z:/Yoshi On My Mac/Google Drive/city.dat"
typedef struct city {
string zip, name;
};
void add() {
ofstream file;
city city;
titelscherm("ADD CITY");
cout << "ZIP: ";
getline(cin, city.zip);
while (city.zip not_eq "0") {
cout << "Name: ";
getline(cin, city.name);
file.open(B, ios::app | ios::binary);
file.write((char*)&city, sizeof(city));
file.close();
titelscherm("ADD CITY");
cout << "POSTCODE: ";
getline(cin, city.zip);
}
cout << "city: ";
file.close();
}
void read() {
ifstream file;
city city;
titelscherm("READ CITY");
file.open(B, ios::in | ios::binary);
file.read((char*)&city, sizeof(city));
while (!file.eof()) {
cout << city.zip << " ";
cout << city.name << endl;
file.read((char*)&city, sizeof(city));
}
file.close();
_getch();
}
void search() {
string zip;
city city;
ifstream file;
bool find;
titelscherm("SEARCH ZIP");
cout << "ZIP: ";
getline(cin, zip);
file.open(B, ios::in | ios::binary);
if (!file.is_open()){
cout << "FILE ERROR";
}
else {
do {
file.read((char*)&city, sizeof(city));
find = (city.zip == zip);
} while (!file.eof() and !find);
if (find) {
cout << city.name << endl;
}
else {
cout<<" zit niet in het file" << endl;
}
}
_getch();
file.close();
}
int main() {
add();
read();
search();
return 0;
}
答案 0 :(得分:5)
我会对你老师的C ++能力产生严重怀疑。
您无法将std::string
视为原始数据。它不是POD类型。
file.read((char*)&city, sizeof(city))
...
file.write((char*)&city, sizeof(city));
这段代码以前不应该有用,但听起来好像你以某种方式真实幸运。
您需要通过编写长度来序列化字符串,然后是实际字符。阅读时,您将先读取大小,然后分配存储空间,然后读取字符。
如果您想改用您的方法,请将结构中的string
值更改为char
数组。