string函数写入txt文本文件,I love python字符串
时间: 2024-02-21 22:58:22 浏览: 52
写入文本文件
以下是使用C++的示例代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string str = "I love python";
ofstream outfile("output.txt");
if (outfile.is_open()) {
outfile << str;
outfile.close();
cout << "写入成功!" << endl;
} else {
cout << "写入失败!" << endl;
}
return 0;
}
```
这段代码使用string类型的变量`str`存储要写入的字符串,然后使用`ofstream`类打开一个名为"output.txt"的文件,如果文件成功打开,就使用`<<`运算符将字符串写入文件中,最后关闭文件。如果文件打开失败,则输出写入失败的信息。
阅读全文