21xrx.com
2025-04-03 15:35:38 Thursday
文章检索 我的文章 写文章
C++文件读写操作代码
2023-06-28 17:32:41 深夜i     --     --
C++ 文件读取 文件写入 文件操作 代码

C++是一种通用性很强的编程语言,在文件读写操作方面也拥有很强的优势,可以实现各种文件读写操作。下面是C++文件读写操作代码:

文件写操作:

#include <iostream>
#include <fstream>
using namespace std;
int main () {
  ofstream outfile;
  outfile.open("example.txt");
  outfile << "C++ 文件写操作实例。" << endl;
  outfile.close();
  return 0;
}

此代码使用了`ofstream`类和`open()`函数来打开一个文件,然后使用`<<`运算符写入文件内容,最后使用`close()`函数关闭文件。

文件读操作:

#include <iostream>
#include <fstream>
using namespace std;
int main () {
  char data[100];
  ifstream infile;
  infile.open("example.txt");
  infile >> data;
  cout << data << endl;
  infile.close();
  return 0;
}

此代码使用了`ifstream`类和`open()`函数来打开一个文件,然后使用`>>`运算符读取文件内容,最后使用`close()`函数关闭文件。

以上就是C++文件读写操作的代码,这些代码可以帮助我们实现各种文件读写操作。如果需要进行更加复杂的文件操作,可以参考C++的文件操作相关文档进行学习。

  
  

评论区