我是靠谱客的博主 帅气黑裤,最近开发中收集的这篇文章主要介绍写结构体数组到文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>

struct Student
{
        int a;
        char c;
};

int main(int argc, char *argv[])
{
        /*demo15.c说明文件的读写操作不单只是进行字符串的读写,整形数、结构体、数组都可以进行读写操作*/
        int fd;
        struct Student data[2] = {{8,'x'}, {24, 'y'}};
        struct Student data2[2];

        fd = open("./file3", O_RDWR | O_CREAT, 0600);

        write(fd, data, sizeof(struct Student)*2);      //write()与read()第二个参数是取地址,不一定必须是指针
        lseek(fd, 0, SEEK_SET);
        read(fd, data2, sizeof(struct Student)*2);

        printf("read: %d, %cn", data2[0].a, data2[0].c);
        printf("read: %d, %cn", data2[1].a, data2[1].c);

        close(fd);
        return 0;
}

ps:read(fd, data, sizeof(struct Student)*2)、write(fd, data2, sizeof(struct Student)*2)跟read(fd, &data, sizeof(struct Student)*2)、write(fd, &data2, sizeof(struct Student)*2)编程运行其实结果上都是正确的,具体原因可以借鉴百度回答:

最后

以上就是帅气黑裤为你收集整理的写结构体数组到文件的全部内容,希望文章能够帮你解决写结构体数组到文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部