温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C++文件操作写入和读取结构体类型

发布时间:2020-07-29 18:29:28 来源:网络 阅读:6600 作者:botaorain 栏目:移动开发
// file2.cpp : 定义控制台应用程序的入口点。
//
#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);  //定义文件输出流   文件不存在时创建文件
    //对文件打开错误时的操作
    if(!outFile)
        {
        cout<<"The file open error!"<<endl;
        return 0;
        }
    else        //文件正常打开时,进行相应的处理
        {
        Student *s=new Student;
        cout<<"输入学生学号:";
        cin>>s->num;
        cout<<"输入学生姓名:";
        cin>>s->name;
        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->num<<endl;
        cout<<"姓名:"<<s->name<<endl;
        }
    inFile.close();       //关闭输入流
    }
int main()
    {
    cout<<"The main .............."<<endl;
    //addInFile();  //添加结构体
    myReadFile();  //读取结构体
    return 0;
    }


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI