std::fwrite
来自 cppreference.cn
定义于头文件 <cstdio> |
||
std::size_t fwrite( const void* buffer, std::size_t size, std::size_t count, std::FILE* stream ); |
||
将给定数组 buffer 中至多 count 个二进制对象写入输出流 stream。写入对象的方式是:将每个对象重解释为 unsigned char 数组,并对每个对象调用 std::fputc size 次,以按顺序将这些 unsigned char 写入 stream。流的文件位置指示器将前进写入的字符数。
如果对象不是 TriviallyCopyable,则行为未定义。
如果发生错误,则流的文件位置指示器的最终值是不确定的。
目录 |
[编辑] 参数
buffer | - | 指向要写入数组中第一个对象的指针 |
size | - | 每个对象的大小 |
count | - | 要写入的对象数量 |
stream | - | 要写入的输出文件流 |
[编辑] 返回值
成功写入的对象数量,如果发生错误,此数量可能小于 count。
如果 size 或 count 为零,fwrite
返回零并且不执行其他操作。
[编辑] 示例
运行此代码
#include <array> #include <cstdio> #include <vector> int main () { // write buffer to file if (std::FILE* f1 = std::fopen("file.bin", "wb")) { std::array<int, 3> v = {42, -1, 7}; // underlying storage of std::array is an array std::fwrite(v.data(), sizeof v[0], v.size(), f1); std::fclose(f1); } // read the same data and print it to the standard output if (std::FILE* f2 = std::fopen("file.bin", "rb")) { std::vector<int> rbuf(10); // underlying storage of std::vector is also an array std::size_t sz = std::fread(rbuf.data(), sizeof rbuf[0], rbuf.size(), f2); std::fclose(f2); for (std::size_t n = 0; n < sz; ++n) std::printf("%d\n", rbuf[n]); } }
输出
42 -1 7
[编辑] 参阅
(C++11) |
将格式化输出打印到 stdout、文件流或缓冲区 (函数) |
将字符字符串写入文件流 (函数) | |
从文件读取 (函数) | |
C 文档 用于 fwrite
|