c++学习seekp和tellp心得

C++的seek和tellp学习心得

在iostream里面
输出对象拥有函数:
ostream& seekp(long ing,int);//第一个参数是设置偏移,第二个参数是设置读写的位置,有三种状态
long int tellp(void);//获取当前读写位置到文件头的偏移,单位为字节
下面的程序是在Mat文件里面读取数据,并且用16进制显示

#include
#include
#include
using namespace std;
int main() 
{
	ifstream in("Mat.txt",ios::binary);
	if (in.fail()) { cout << "打开失败" << endl; return 0; }
	in.seekg(0,ios::end);
	long int li = in.tellg();//tellg是返回一个当前位置到文件头的偏移
	char *pt = new char[li+1],*p=pt;
	pt[li] = '\0';
	in.seekg(0,ios::beg);//这里必须要把读的位置设到文件的前面
	while (in.read(p, 1)) { p++; }
	in.close();
	cout << pt << endl;
	p = pt;
	for (int i = 0; i < li ;i++) 
	{
		
		cout <

这里使用p指向动态在创建的pt是为了放置丢失

你可能感兴趣的:(c++学习seekp和tellp心得)