亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

文件操作寫入和讀出結構體--修改文件信息

發布時間:2020-07-02 00:06:53 來源:網絡 閱讀:503 作者:botaorain 欄目:移動開發
// file3.cpp : 定義控制臺應用程序的入口點。
//
//
#include "stdafx.h"
#include <fstream>
#include <iostream>
using namespace std;
struct Student{
char name[20];
int num;
};
int addInFile()
{
ofstream outFile("botao.dat",ios::out|ios::binary);  //定義文件輸出流   文件不存在時創建文件
//對文件打開錯誤時的操作
if(!outFile)
{
cout<<"The file open error!"<<endl;
return 0;
}
else        //文件正常打開時,進行相應的處理
{
Student *s=new Student;
cout<<"輸入學生姓名:";
cin>>s->name;
cout<<"輸入學生學號:";
cin>>s->num;
outFile.write((char*)s,sizeof(Student));   //文件輸出流向文件中寫入student信息
}
outFile.close();   //關閉輸出流
return 1;
}
int myReadFile()
{
ifstream inFile("botao.dat",ios::in|ios::binary);   //文件輸入流  將文件中的student信息讀出到屏幕上
//對文件打開錯誤時的操作
if(!inFile)
{
cout<<"The inFile open error!"<<endl;
return 0;
}
else
{
Student *s=new Student;
inFile.read((char*)s,sizeof(Student));
cout<<"姓名:"<<s->name<<endl;
cout<<"學號:"<<s->num<<endl;
}
inFile.close();       //關閉輸入流
}
void addCustomers(char *identityCard,int number,int isExist)        //      添加顧客信息  想總的顧客信息索引表中添加數據
{
ifstream inf("botao.dat",ios::in|ios::binary);
if(!inf)
{
cout<<"文件不存在,正在創建……"<<endl;
ofstream outf("botao.dat",ios::out|ios::binary);
outf.close();
}
inf.close();
fstream outFile("botao.dat",ios::app|ios::in|ios::binary);
Student *index=new Student;
if(!outFile)
{
cout<<"Open Error!"<<endl;
//exit(1);
}
else
{
if(isExist==0)      //如果此顧客還沒有在此航空公司買過票
{
outFile.seekp(ios::end);    //文件指針重新定位
index->num=0;
strcpy(index->name,identityCard);
index->num=number;
outFile.write((char*)index,sizeof(Student));  //*****將信息寫入到文件中
cout<<"index->name:"<<index->name<<endl;
cout<<"index ->num:"<<index->num<<endl;
//outFile.flush();      //將緩沖中數據刷如到文件中
}
else        //如果此顧客已經存在
{
while(outFile.read((char*)index,sizeof(Student)))   //
{
if(strcmp(identityCard,index->name)==0)
{
cout<<"指針移動前:--------"<<outFile.tellg()<<endl;
outFile.seekg(-(long)sizeof(Student),ios::cur);
cout<<"指針移動后:--------"<<outFile.tellg()<<endl;
index->num=0;
strcpy(index->name,identityCard);
index->num=number;
cout<<"index->name:"<<index->name<<endl;
cout<<"index->num:"<<index->num<<endl;
if(outFile.write((char*)index,sizeof(Student)))  //*****將修改后信息寫入到文件中
cout<<"cheng  gong        ________________________"<<endl;
//myReadFile();
ifstream iinFile("botao.dat",ios::in|ios::binary);
//Student *s=new Student;
iinFile.seekg(-(long)sizeof(Student),ios::cur); //將指針定位到修改信息后的結構體前面
iinFile.read((char*)index,sizeof(Student));
cout<<"姓名:"<<index->name<<endl;
cout<<"學號:"<<index->num<<endl;
iinFile.close();
break;
}
index=new Student;
}
}
}
//delete index;
outFile.close();
}
int main()
{
cout<<"The main .............."<<endl;
//addInFile();  //添加結構體
addCustomers("botao1",1,1);
//myReadFile();  //讀取結構體
return 0;
}

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东光县| 合川市| 合肥市| 荔浦县| 甘谷县| 米易县| 温州市| 新竹市| 开化县| 迁西县| 金门县| 都江堰市| 天台县| 那坡县| 河津市| 赣榆县| 荥经县| 大兴区| 万荣县| 嵊州市| 绍兴市| 怀宁县| 沂南县| 孝感市| 连江县| 五河县| 营口市| 平泉县| 聂荣县| 阳西县| 盘山县| 亚东县| 福清市| 新宾| 绍兴市| 永宁县| 仪征市| 奉节县| 黔东| 宿迁市| 二连浩特市|