c_cpp C ++写入二进制文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp C ++写入二进制文件相关的知识,希望对你有一定的参考价值。

#include <fstream>

int x[5] = {1, 2, 3, 4, 5};

std::ofstream outFile;
outFile.open("output.dat", std::ios::binary);
outFile.write(reinterpret_cast<const char *> (x), sizeof(x));
outFile.close();

以上是关于c_cpp C ++写入二进制文件的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp C ++写入文件

c_cpp 用C ++写入文件

c_cpp 将矢量写入文件

c_cpp 一个小程序,显示在shell中指定它时,您实际上可以写入0/1/2以外的不同文件描述符!

C语言二进制流写入文件

C语言如何写入文本文件