溫馨提示×

c++ fwrite函數(shù)的用法是什么

c++
小億
237
2024-03-11 09:42:25
欄目: 編程語言

在C++中,fwrite函數(shù)用于將數(shù)據(jù)塊寫入文件。其聲明如下:

size_t fwrite(const void* ptr, size_t size, size_t count, FILE* stream);

其中,ptr是指向要寫入的數(shù)據(jù)塊的指針,size是每個數(shù)據(jù)塊的字節(jié)數(shù),count是要寫入的數(shù)據(jù)塊數(shù)量,stream是指向要寫入的文件的文件指針。

fwrite函數(shù)會向文件流stream寫入size*count個字節(jié)的數(shù)據(jù),返回實際寫入的數(shù)據(jù)塊數(shù)量。

示例代碼:

#include <iostream>
#include <cstdio>

int main() {
    FILE* file = fopen("data.txt", "wb"); // 以二進(jìn)制寫入模式打開文件
    if (file == nullptr) {
        std::cout << "Failed to open file." << std::endl;
        return 1;
    }
    
    const char* data = "Hello, World!";
    size_t size = sizeof(char);
    size_t count = strlen(data);
    
    size_t written = fwrite(data, size, count, file);
    if (written != count) {
        std::cout << "Error writing to file." << std::endl;
    } else {
        std::cout << "Data written to file successfully." << std::endl;
    }
    
    fclose(file); // 關(guān)閉文件
    
    return 0;
}

在這個例子中,我們打開一個文件data.txt,將字符串"Hello, World!"寫入文件中,然后關(guān)閉文件。

0