C++中的文件操作流主要有ifstream
(输入文件流)和ofstream
(输出文件流)
- 包含头文件:在使用文件操作流之前,需要包含相应的头文件
。
#include
- 打开文件:使用
ifstream
或ofstream
对象打开文件。如果文件打开成功,对象的is_open()
成员函数将返回true
,否则返回false
。
std::ifstream inputFile("input.txt");
if (!inputFile.is_open()) {
std::cerr << "Error opening input file." << std::endl;
return 1;
}
- 读取文件:使用
ifstream
对象的成员函数>>
从文件中读取数据。例如,使用getline()
函数读取一行数据。
std::string line; while (std::getline(inputFile, line)) { std::cout << line << std::endl; }
- 写入文件:使用
ofstream
对象的成员函数<<
向文件中写入数据。例如,使用putline()
函数写入一行数据。
std::ofstream outputFile("output.txt");
if (!outputFile.is_open()) {
std::cerr << "Error opening output file." << std::endl;
return 1;
}
outputFile << "Hello, World!" << std::endl;
outputFile.close();
- 关闭文件:使用
close()
成员函数关闭文件。
inputFile.close(); outputFile.close();
- 错误处理:在文件操作过程中,可能会遇到各种错误,如文件不存在、无法读取或写入等。可以使用
try-catch
语句捕获异常并进行处理。
try {
std::ifstream inputFile("input.txt");
if (!inputFile.is_open()) {
throw std::runtime_error("Error opening input file.");
}
std::ofstream outputFile("output.txt");
if (!outputFile.is_open()) {
throw std::runtime_error("Error opening output file.");
}
// 文件操作代码...
} catch (const std::exception& e) {
std::cerr << "Error: " << e.what() << std::endl;
return 1;
}
- 使用命名空间:为了避免命名冲突,可以使用
std
命名空间中的文件操作流对象。
std::ifstream inputFile("input.txt");
std::ofstream outputFile("output.txt");
- 使用
std::ios_base::sync_with_stdio(false)
和std::cin.tie(NULL)
提高I/O性能:在处理大量输入输出时,可以使用这两个函数提高C++的I/O性能。
std::ios_base::sync_with_stdio(false); std::cin.tie(NULL);
- 使用
std::setw()
、std::setprecision()
和std::fixed
等格式化输出:在写入浮点数时,可以使用这些函数控制输出的精度和小数点后的位数。
outputFile << std::setw(10) << std::setprecision(5) << 3.14159 << std::endl;
这些技巧可以帮助您更有效地使用C++文件操作流进行文件的读写操作。