c++文件输入输出字符串
时间: 2024-01-04 14:03:19 浏览: 100
C++文件输入输出
以下是两种C++文件输入输出字符串的例子:
1. 从标准输入中读取一行字符串,然后输出该字符串及其长度,并将该字符串转换为C风格字符串,最后输出C风格字符串及其长度减去3的子串。
```cpp
#include <iostream>
#include <cstdio> // printf
#include <cstring> // strlen
using namespace std;
int main(int argc, char const *argv[]) {
string str1;
getline(cin, str1, '!'); // 读取一行字符串,以感叹号为结束符
cout << str1 << '\n'; // 输出该字符串
cout << "str1.size(): " << str1.size() << '\n'; // 输出该字符串的长度
const char * cstr = str1.c_str(); // 将该字符串转换为C风格字符串
printf("%s\n", cstr); // 输出C风格字符串
printf("strlen(cstr): %lu\n", strlen(cstr)); // 输出C风格字符串的长度
string str2(cstr, strlen(cstr) - 3); // 截取C风格字符串的长度减去3的子串
cout << str2 << '\n'; // 输出子串
return 0;
}
```
2. 从文件中读取一个字符串,然后向另一个文件中输出一些文本和该字符串。
```cpp
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char const *argv[]) {
ifstream fin;
fin.open("1.txt", ifstream::in); // 打开输入文件
ofstream fout("2.txt", ios_base::out); // 打开输出文件
string str;
fin >> str; // 从输入文件中读取一个字符串
fout << "hey, there\n"; // 向输出文件中输出一些文本
fout << str << '\n'; // 向输出文件中输出该字符串
fin.close(); // 关闭输入文件
fout.close(); // 关闭输出文件
return 0;
}
```
阅读全文