标题:seekg函数问题
只看楼主
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
 问题点数:0 回复次数:0 
seekg函数问题
我在VC++6.0中运行:
VC++2005运行。

无任何警告与错误,就是输出与我想要的不符!


#include<iostream>
#include<fstream>

using namespace std;
int main()
{
int x=0;
ifstream in("abc.txt"); //内容10 20 30 40 50 60 70 80 90 100
for(int i=5;i>0;--i)
{
in.seekg(i*sizeof(int));
in.read((char*)(&x),sizeof(int));
cout<<x<<endl;

}
in.close();
return 0;
}

(本来我想输出为:50 40 30 20 10)
为何输出为:540031008
808919088
908079157
540029984
808655944



搜索更多相关主题的帖子: seekg 函数 int sizeof include 
2007-04-03 09:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-128823-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.206057 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved