鱼C论坛

 找回密码
 立即注册
查看: 1166|回复: 1

C++文件操作如何一次性读取或写入一个结构体大小!

[复制链接]
发表于 2015-4-23 00:33:46 From FishC Mobile | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
C语言一次性读取一个结构大小没有问题!但是c++如何实现那个对象是实现改功能的呢?:cry
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-4-23 15:28:40 | 显示全部楼层
你是想用文件流的read或write之类的函数么?
下面是cppreference.上  的示例代码:
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <cstdint>

int main()
{
    // read() is often used for binary I/O
    std::string bin = {'\x12', '\x12', '\x12', '\x12'};
    std::istringstream raw(bin);
    std::uint32_t n;
    raw.read(reinterpret_cast<char*>(&n), sizeof n);
    std::cout << std::hex << std::showbase << n << '\n';

    // prepare file for next snippet
    std::ofstream os("test.txt", std::ofstream::binary);
    for (unsigned i = 0; i < 10; i++) { // prepare stream
        os << "abcd" << i << "\n";
    }
    os.close();

    // read entire file into string
    std::ifstream is("test.txt", std::ifstream::binary);
    if (is) {
        // get length of file:
        is.seekg(0, is.end);
        int length = is.tellg();
        is.seekg(0, is.beg);

        std::string str;
        str.resize(length, ' '); // reserve space
        char* begin = &*str.begin();

        is.read(begin, length);
        is.close();

        std::cout << str << "\n";
    } else {
        std::cout << "Could not open test.txt\n";
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 21:42

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表