class ReadFile {
public:
void init();
QList<double> getData();
private:
QFile file;
QDataStream read;
double bufferFloat;
quint32 bufferInteger
}
现在的想法是,当调用init()时,应该打开一个文件并导航到数据开始的位置。现在,每次调用getData()时,都应该从文件中读取一大块字节。
伪代码如下所示:
void ReadFile::init()
{
file.setFileName("...");
file.open(QIODevice::ReadOnly);
QDataStream read(&file);
// This chunk does some magic to find correct location by applying
// a readout (read >> bufferInteger) and check the result
// I can verify that at this point, if doing a readout (read >> bufferFloat)
// I get good data (i.e. corresponding to the file).
}
和
QList<double> ReadFile::getData()
{
// Doing a (read >> bufferFloat) at this point will result in zeros.
}
我理解为什么会发生这种情况,因为read
中的init
是在本地声明的。但是,我应该如何分配数据流,以便getData
可以在init
停止的地方进行检索?然后下一个getData
可以选择前一个离开的位置。呼叫序列如下:
ReadFile file();
file.init();
file.readData();
file.readData();
file.readData();
file.readData();
//etc...
答案 0 :(得分:2)
您的代码中存在错误。这一行:
QDataStream read(&file);
定义一个局部变量,它覆盖类成员。相反,你应该这样做:
read.setDevice(&file);