⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 demo_5_file_dat_2.cpp

📁 对于一个初涉VC++的人来书
💻 CPP
字号:

//***************************************************
// 随机访问二进制数据文件
//***************************************************

# include <fstream.h>
# include <stdlib.h>

int main()
{
	fstream file;

	file.open("test.dat",ios::in|ios::out|ios::binary);

	if(!file)
	{
		cerr<<"open error!"<<endl;
		exit(1);
	}

	file<<"AB CD EF"<<endl;

	cout<<file.tellg()<<endl;
	file.seekg(0);           //非常关键
//	file.seekg(0,ios::beg); 
	cout<<file.tellg()<<endl;

	char ch;

	while(!file.eof())
	{
		file.get(ch);
		if(ch==' ') 
		{
			cout<<file.tellg()<<" ";
			file.get(ch); //读入一个字符,并且文件读指针前移sizeof(ch)
			cout<<file.tellg()<<" ";
			cout<<ch<<endl;
		}
	}
	
	file.close();
	
	return 0;
}

/*
9
0
3 4 C
6 7 E
*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -