将 ifstream 中的一行读入字符串变量
在以下代码中:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string x = "This is C++.";
ofstream of("d:/tester.txt");
of << x;
of.close();
ifstream read("d:/tester.txt");
read >> x;
cout << x << endl ;
}
输出:
This
由于>>运算符读取第一个空格,我得到这个输出。我怎样才能将该行提取回字符串中?
我知道这种形式的 istream& getline (char* s, Streamsize n ); 但我想将它存储在字符串变量中。 我该怎么做?
In the following code :
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string x = "This is C++.";
ofstream of("d:/tester.txt");
of << x;
of.close();
ifstream read("d:/tester.txt");
read >> x;
cout << x << endl ;
}
Output :
This
Since >> operator reads upto the first whitespace i get this output. How can i extract the line back into the string ?
I know this form of istream& getline (char* s, streamsize n );
but i want to store it in a string variable.
How can i do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
< 中的
。std::getline()
;字符串>所以,对于你的情况来说,它将是:
Use the
std::getline()
from<string>
.So, for your case it would be: