c++ 写文件性能比较

cpp 复制代码
#include <iostream>
#include <fstream>
#include <vector>
#include <chrono>
#include <glog/logging.h>
using milli = std::chrono::milliseconds;

int main()
{
    int num = 1000000000;
    int* arr = new int[num];
    std::ofstream outfile("data.bin", std::ios::binary | std::ios::out);
    std::vector<int> tmp;

    if (!outfile.is_open())
    {
        std::cerr << "Failed to open the file." << std::endl;
        // return 1;
    }

    auto start = std::chrono::high_resolution_clock::now();
    for (int i = 0; i < num; i++)
    {
        outfile.write(reinterpret_cast<const char *>(&i), sizeof(i));
    }
    auto end = std::chrono::high_resolution_clock::now();
    std::cout << "直接写入文件耗时:"<<(float)std::chrono::duration_cast<milli>(end - start).count()
              << " milliseconds\n";

    start = std::chrono::high_resolution_clock::now();
    for (int i = 0; i < num; i++)
    {
        tmp.push_back(i);
    }
    outfile.write(reinterpret_cast<const char *>(tmp.data()), sizeof(int) * tmp.size());
    end = std::chrono::high_resolution_clock::now();
    std::cout << "放入vector再写入文件: "<<(float)std::chrono::duration_cast<milli>(end - start).count()
              << " milliseconds\n";

    start = std::chrono::high_resolution_clock::now();
    for (int i = 0; i < num; i++)
    {
        arr[i] = i;
    }
    outfile.write(reinterpret_cast<const char *>(arr), sizeof(int) * num);
    end = std::chrono::high_resolution_clock::now();
    std::cout << "预设内存块, 赋值写入:"<<(float)std::chrono::duration_cast<milli>(end - start).count()
              << " milliseconds\n";

    outfile.close();
}

编译执行

bash 复制代码
(py37) hq@nuc:~/tmp/hq$ g++ test.cpp -lglog
(py37) hq@nuc:~/tmp/hq$ ./a.out 
直接写入文件耗时:12037 milliseconds
放入vector再写入文件: 11278 milliseconds
预设内存块, 赋值写入:8115 milliseconds

结论:预设内存,一次性写入新能最高

相关推荐
old_power26 分钟前
【PCL】Segmentation 模块—— 基于图割算法的点云分割(Min-Cut Based Segmentation)
c++·算法·计算机视觉·3d
fmdpenny27 分钟前
Vue3初学之商品的增,删,改功能
开发语言·javascript·vue.js
涛ing42 分钟前
21. C语言 `typedef`:类型重命名
linux·c语言·开发语言·c++·vscode·算法·visual studio
等一场春雨1 小时前
Java设计模式 十四 行为型模式 (Behavioral Patterns)
java·开发语言·设计模式
黄金小码农1 小时前
C语言二级 2025/1/20 周一
c语言·开发语言·算法
萧若岚1 小时前
Elixir语言的Web开发
开发语言·后端·golang
wave_sky2 小时前
解决使用code命令时的bash: code: command not found问题
开发语言·bash
PaLu-LI2 小时前
ORB-SLAM2源码学习:Initializer.cc⑧: Initializer::CheckRT检验三角化结果
c++·人工智能·opencv·学习·ubuntu·计算机视觉
水银嘻嘻2 小时前
【Mac】Python相关知识经验
开发语言·python·macos
ac-er88882 小时前
Yii框架中的多语言支持:如何实现国际化
android·开发语言·php