溫馨提示×

C++中怎么同時(shí)讀取多個(gè)文件

c++
小億
229
2024-04-15 18:16:12
欄目: 編程語言

在C++中同時(shí)讀取多個(gè)文件,可以使用多線程或者多進(jìn)程來實(shí)現(xiàn)。以下是使用多線程的示例代碼:

#include <iostream>
#include <fstream>
#include <vector>
#include <thread>

void read_file(const std::string& filename) {
    std::ifstream file(filename);
    if (file.is_open()) {
        std::string line;
        while (std::getline(file, line)) {
            std::cout << line << std::endl;
        }
    } else {
        std::cerr << "Error opening file: " << filename << std::endl;
    }
}

int main() {
    std::vector<std::string> filenames = {"file1.txt", "file2.txt", "file3.txt"};

    std::vector<std::thread> threads;
    for (const auto& filename : filenames) {
        threads.push_back(std::thread(read_file, filename));
    }

    for (auto& thread : threads) {
        thread.join();
    }

    return 0;
}

在上面的代碼中,我們定義了一個(gè)read_file函數(shù)用來讀取單個(gè)文件的內(nèi)容,然后在main函數(shù)中創(chuàng)建了多個(gè)線程來同時(shí)讀取多個(gè)文件。每個(gè)線程負(fù)責(zé)讀取一個(gè)文件,最后等待所有線程執(zhí)行完成。

需要注意的是,多線程讀取文件時(shí)要注意文件的互斥訪問,可以使用互斥鎖或者其他同步機(jī)制來保證文件的讀取不會發(fā)生沖突。

0