写/读没有给出正确的结果。
你能告诉我为什么第二个&第三条记录显示不正确。
另外如何知道二进制文件包含多少条记录?
请参阅以下代码
#include <iostream.h>
#include <fstream.h>
#include <string.h>
enum Ticket_type { ADULT, CHILD, STUDENT, SENIOR, FREE, SPECIAL };
typedef struct transaction_stru
{
char ID[10];
int tariff;
Ticket_type tickettype;
int qty;
float total;
}transaction_t;
int main () {
// Attempt to open it for reading.
fstream fs("trans.dat", ios::in);
if (!fs)
fs.open("trans.dat", ios::out | ios::binary | ios::app);
else{
fs.close(); // File exists; close and reopen for write.
transaction_t dailytrans[3];
dailytrans[0] = {"00001", 20, STUDENT, 1, 20.00 };
dailytrans[1] = {"00002", 30, ADULT, 2, 60.00 };
dailytrans[2] = {"00003", 30, SPECIAL, 3, 30.00 };
fs.open("trans.dat", ios::out | ios::binary | ios::app);
fs.write((char*)&dailytrans,sizeof(dailytrans));
fs.close();
}
// Let us read the file now
fs.open("trans.dat", ios::in | ios::binary);
if(!fs){
cout << "Error Opening trans.dat";
//throw SomeFileException;
}
transaction_t results[3];
fs.read((char*)&results,sizeof(transaction_stru));
for (size_t i=0; i < 3; i++)
{
cout << results[i].ID << endl;
cout << results[i].tariff << endl;
cout << results[i].tickettype << endl;
cout << results[i].qty << endl;
cout << results[i].total << endl;
}
return 0;
}
输出结果如下: -
00001
20
2
1
20
╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠00001
-858993460
-858993460
-858993460
-1.07374e+008
╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠╠00001
-858993460
-858993460
-858993460
-1.07374e+008
Press any key to continue
答案 0 :(得分:5)
您似乎只编写和读取一个结构,但是打印3.最后两个因此是堆栈中的垃圾。
此外,谨慎的做法是至少将ID
,最好是整个结构清零,以避免磁盘文件中的未定义字节(在这种情况下为ID
的未初始化字节),例如对于您的特定情况有问题的代码:
memset (dailytrans, 0, sizeof(dailytrans)); // this depends on dailytrans size being known at compile time