码迷,mamicode.com
首页 > 编程语言 > 详细

把数组整个存到文件中(包含读写文件)

时间:2017-02-09 19:21:37      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:char   nbsp   har   open   bsp   size   个数   c++   读写文件   

C++读写文件:

头文件 fstream.h

读:ifstream  -> open -> seekg -> read -> close

写:ofstream -> open -> seekp -> write  -> close

 参数:ios::binary 等等 seekg、seekp定位

C读写

FILE* :  fopen -> fread -> fwrite -> fclose

 

数组存到文件:

file.write((char*)QuaryTable,table_size * sizeof(int ));

读:

if( table_size != fread(p_quary_table,4,table_size,fp) )

 

* fread 的返回值,判断第三个参数,读的个数。

 

把数组整个存到文件中(包含读写文件)

标签:char   nbsp   har   open   bsp   size   个数   c++   读写文件   

原文地址:http://www.cnblogs.com/yaoyuanfeixing/p/6383436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!