//这是测试用的类
class A {
public:
int _i;
string _str;
vector<int> _vec;
A(const int i = 0, const string str = "hi", vector<int> vec = { 0 })
:_a(i), _b(str), _vec(vec) {}
};
//这是第一次测试,输出是正确的
int main()
{
A a(1, "hello", { 1,2,3 });
ofstream out("test.txt", ios::binary);
out.write((char*)&a, sizeof(a));
out.close();
A b;
ifstream in("test.txt", ios::binary);
in.read((char*)&b, sizeof(b));
in.close();
cout << b._i << b._str << *b._vec.begin();
getchar();
}
//然后我把写入文件的部分注释掉了,程序就不能用了
int main()
{
/*A a(1, "hello", { 1,2,3 });
ofstream out("test.txt", ios::binary);
out.write((char*)&a, sizeof(a));
out.close();*/
A b;
ifstream in("test.txt", ios::binary);
in.read((char*)&b, sizeof(b));
in.close();
cout << b._i << b._str << *b._vec.begin();
getchar();
}
PHPz2017-04-17 13:18:00
因為string和vector包含指向堆區的指標。
每次程式運行不一定會分配到一個地方。你後面那次讀到的是垃圾資料。
你應該想辦法保存它的實際數據,找個json庫或什麼的。
伊谢尔伦2017-04-17 13:18:00
你儲存的是物件的參考。棧上資料存了堆上資料沒有存。
string實作不同可能會導致類別物件的大小不一致
A b;
ifstream in("test.txt", ios::binary);
in.read((char*)&b, sizeof(b));
唸出來可能是亂的