把数组整个存到文件中(包含读写文件)
Posted Komorebi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把数组整个存到文件中(包含读写文件)相关的知识,希望对你有一定的参考价值。
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 的返回值,判断第三个参数,读的个数。
以上是关于把数组整个存到文件中(包含读写文件)的主要内容,如果未能解决你的问题,请参考以下文章