大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1、流类库
创新互联专业为企业提供中卫网站建设、中卫做网站、中卫网站设计、中卫网站制作等企业网站建设、网页设计与制作、中卫企业网站模板建站服务,十余年中卫做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。(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<<"("< 另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
当前题目:流类库和文件-创新互联
文章链接:http://dzwzjz.com/article/dededd.html