ifstream的一个问题!!
其中 1.txt的内容为
11
12
程序如下:
int a,b;
ifstream in("1.txt");
in>>a>>b;
cout < <"a=" < <a < <" " < <"b=" < <b < <endl;
//文件流指针回复开始位置
in.seekg(ios_base::beg);
in>>a>>b
cout < <"a=" < <a < <" " < <"b=" < <b < <endl;
结果是
a=11 b=12
a=1210604 b=1310604
这一句in.seekg(ios_base::beg);怎么不起作用呢????