// file2.cpp : 定義控制臺(tái)應(yīng)用程序的入口點(diǎn)。 // #include "stdafx.h" #include <fstream> #include <iostream> using namespace std; struct Student{ int num; char name[20]; }; int addInFile() { ofstream outFile("botao.dat",ios::out|ios::binary); //定義文件輸出流 文件不存在時(shí)創(chuàng)建文件 //對(duì)文件打開錯(cuò)誤時(shí)的操作 if(!outFile) { cout<<"The file open error!"<<endl; return 0; } else //文件正常打開時(shí),進(jìn)行相應(yīng)的處理 { Student *s=new Student; cout<<"輸入學(xué)生學(xué)號(hào):"; cin>>s->num; cout<<"輸入學(xué)生姓名:"; cin>>s->name; outFile.write((char*)s,sizeof(Student)); //文件輸出流向文件中寫入student信息 } outFile.close(); //關(guān)閉輸出流 return 1; } int myReadFile() { ifstream inFile("botao.dat",ios::in|ios::binary); //文件輸入流 將文件中的student信息讀出到屏幕上 //對(duì)文件打開錯(cuò)誤時(shí)的操作 if(!inFile) { cout<<"The inFile open error!"<<endl; return 0; } else { Student *s=new Student; inFile.read((char*)s,sizeof(Student)); cout<<"學(xué)號(hào):"<<s->num<<endl; cout<<"姓名:"<<s->name<<endl; } inFile.close(); //關(guān)閉輸入流 } int main() { cout<<"The main .............."<<endl; //addInFile(); //添加結(jié)構(gòu)體 myReadFile(); //讀取結(jié)構(gòu)體 return 0; }
新聞名稱:C++文件操作寫入和讀取結(jié)構(gòu)體類型
分享鏈接:http://aaarwkj.com/article24/igjcce.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動(dòng)態(tài)網(wǎng)站、營(yíng)銷型網(wǎng)站建設(shè)、面包屑導(dǎo)航、品牌網(wǎng)站制作、虛擬主機(jī)、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
營(yíng)銷型網(wǎng)站建設(shè)知識(shí)