#include <iostream>
using namespace std;
#include<string>;
#include<fstream>
void test01()
{
// 包含头文件fstream
//创建流对象
ofstream ofs;
//指定打开方式
ofs.open("text.txt", ios::out);
//写内容
ofs << "张三" << endl;
//关闭
ofs.close();
}
void text02()
{
ifstream ifs;
ifs.open("text.txt", ios::in);
if (!ifs.is_open())
{
cout << "失败" << endl;
return;
}
}
int main() {
text02();
}
文件
最新推荐文章于 2024-07-27 23:15:34 发布