我正在使用Visual C++ 2010开发MFC应用程序
我正在读取一个文件的数据,但似乎 seekg 不起作用
这是我的代码
//Transaction is a class i have defined before
void displayMessage(CString message)
{
MessageBox(NULL,message,L"error",MB_OK | MB_ICONERROR);
}
///////////////////////////////
ifstream input;
input.open("test.dat" , ios::binary );
if( input.fail() )
{
CString mess;
mess = strerror( errno );
mess.Insert(0,L"Errorn");
displayMessage(mess);
}
Transaction myTr(0,myDate,L"",0,0,L""); // creating an object of transaction
unsigned long position = 0;
while(input.read( (char *) &myTr , sizeof(Transaction)))
{
if(myTr.getType() == 400 )
position = (unsigned long)input.tellg() - sizeof(Transaction);
}
CString m;
m.Format(L"Pos : %d",position);
displayMessage(m);
input.clear();//I also tried removing this line
input.seekg(position,ios::beg );
m.Format(L"get pos: %d",input.tellg());
displayMessage(m);
input.close();
第一个显示消息显示 : Pos : 6716
但第二个显示 : get pos: 0
为什么 seekg 不起作用?
谢谢
问题是CString.Format()
是一个 varargs 函数,basic_istream::tellg()
返回一个pos_type
,该不是可以作为 vararg agument 传递的类型,因此你会得到未定义的行为。
如果你想传递你从tellg()
到CString::Format()
的位置,你需要投射它或把它放在一个临时的中间变量中:
unsigned long new_pos = input.tellg();
m.Format(L"get pos: %d", new_pos);