在 c++++ 中,使用 fstream 头文件和 ifstream 或 ofstream 类打开文件。具体步骤如下:打开文件进行读操作:ifstream ifs(“文件名”);打开文件进行写操作:ofstream ofs(“文件名”);
如何使用 C++ 打开文件?
在 C++ 中打开文件涉及使用 fstream 头文件和 ifstream 或 ofstream 类。以下是如何在 C++ 中打开文件的步骤:
打开文件进行读操作
ifstream ifs("input.txt"); if (ifs.is_open()) { // 文件已成功打开,可以读取数据 } else { // 文件打开失败,处理错误 }
登录后复制
打开文件进行写操作
ofstream ofs("output.txt"); if (ofs.is_open()) { // 文件已成功打开,可以写入数据 } else { // 文件打开失败,处理错误 }
登录后复制
实战案例:读取和写入文件
#include <iostream> #include <fstream> using namespace std; int main() { // 打开文件进行读操作 ifstream ifs("input.txt"); if (ifs.is_open()) { string line; while (getline(ifs, line)) { // 从文件中读取一行数据并处理它 cout << line << endl; } ifs.close(); // 读取完成后关闭文件 } // 打开文件进行写操作 ofstream ofs("output.txt"); if (ofs.is_open()) { ofs << "Hello, world!" << endl; // 将数据写入文件 ofs.close(); // 写入完成后关闭文件 } return 0; }
登录后复制
在这个示例中,input.txt 用于读取数据,而 output.txt 用于写入数据。
以上就是如何使用C++打开文件?的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:叮当号,转转请注明出处:https://www.dingdanghao.com/article/561784.html