1、流类库
我们提供的服务有:成都网站设计、网站制作、微信公众号开发、网站优化、网站认证、洞头ssl等。为近千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的洞头网站制作公司
(1)、C++中没有输入输出,标准库中包含一个I/O流类库。
C语言中printf 和scanf 称为函数; 输出到屏幕
C++中cout和cin称为对象; 输入是键盘
其中iostream是虚继承;
cout<
(2)、C++流类库中定义4个全局流对象,cin、cout、cerr、clog
cin 标准输入流对象,键盘
cout标准输出流,屏幕
cerr和clog标准错误输出流, 屏幕
其中cin、cout、clog是带缓冲区的,缓冲区由streambuf类对象来管理,cerr非缓冲区,一旦错误发生立即显示。
#includeusing namespace std; int main(void){ cerr<<"Error"< 2、格式控制
会用,知道怎么查就行了,没必要记这些;
cout.flags(ios::hex); //hex这些在ios类中,以16进制输出;
0000 0000 0000 0000 有多少个1,就有什么功能;
ios::hex | ios::showbase hex和showbase都是在ios类中定义的枚举,1-16各占一位;
3、文件
(1)、先定义一个文件对象流
(2)、打开某个文件
(3)、进行文件的读写
(4)、关闭文件
ASCII字符节文件:
fprintf(fd, "", ); :写入文件
fscanf(fd, "", ); :从文件读出
文本文件的操作,写入文件:
#include#include //文件输出流头文件 #include using namespace std; int main(void){ int ar[] = {1, 3, 5, 6, 7, 9,}; //1、 //ofstream ofile("Test1.txt", ios::out);与下2步等价 ofstream ofile; //2、 ofile.open("Test1.txt", ios::out); if(!ofile){ cerr<<"Open File Fail!"< 在文件中读出:
#include#include //文件输出流头文件 #include using namespace std; int main(void){ int ar[10]; ifstream ifile; ifile.open("Test1.txt", ios::in); if(!ifile){ cerr<<"Open File Fail"< >ar[i]; } ifile.close(); } 4、二进制读写
写入文件:
#include#include //文件输出流头文件 #include using namespace std; int main(void){ int ar[] = {1, 3, 5, 6, 7, 9,}; //1、 //ofstream ofile("Test1.txt", ios::out);与下2步等价 ofstream ofile; //2、 ofile.open("Test1.txt", ios::out | ios::binary); if(!ofile){ cerr<<"Open File Fail!"< 从文件读出:
#include#include //文件输出流头文件 #include using namespace std; int main(void){ int ar[] = {1, 3, 5, 6, 7, 9,}; //1、 //ifstream ofile("Test1.txt", ios::out); ifstream ifile; //2、 ifile.open("Test1.txt", ios::out | ios::binary); if(!ifile){ cerr<<"Open File Fail!"< 5、文件随机访问
随机读写关键靠文件指针;
文件指针,开始指向第一个,读写就靠这个文件读写指针,会自动指向下一个;
#include#include //文件输出流头文件 #include using namespace std; int main(void){ ifstream ifile; ifile.open("Test1.txt", ios::in); if(!ifile){ cerr<<"Open File Fail!"< >pos; //beg cur end ifile.seekg(pos, ios::beg);//定位函数,pos,相对于什么地方开始 ifile>>value; //将定位处的值放入value; cout<<"value = "< 文件可以定位读出,最好用二进制解决,每个数字都是4字节;就不用考虑每个数字跨几个字节,所以为pos*4;
文本文件在其中每个数字(0-9)占用1个字节,不好定位一个完整数字占用几个字节;
5、文件与对象
在C++程序设计中,文件应该在构造函数中打开,并创建对象,而在析构函数中保存和关闭文件,并撤销对象;
对文件而言,释放资源的同时包括将对象中的信息再次存入磁盘文件,在程序运行过程中,应将信息适时保存到相应
的磁盘文件,以免数据意外丢失。
文件与对象的有机结合(关键在构造和析构函数),以下就是一个相应的例子:
#include#include using namespace std; class Complex; ostream& operator<<(ostream &out, const Complex &t); class Complex{ friend ostream& operator<<(ostream &out, const Complex &t); public: Complex() : real(0), p_w_picpath(0){ ifstream ifile; ifile.open("Test.txt", ios::in); if(!ifile){ cerr<<"Open File Fail"< >real>>p_w_picpath; ifile.close(); } Complex(int rea, int imag) : real(rea), p_w_picpath(imag){} ~Complex(){ ofstream ofile; ofile.open("Test.txt", ios::out); if(!ofile){ cerr<<"Open File Fail"< real = real; this->p_w_picpath = p_w_picpath; } private: int real; int p_w_picpath; }; ostream& operator<<(ostream &out, const Complex &t){ out<<"("<
网页标题:流类库和文件
链接分享:http://cdkjz.cn/article/ijgeps.html