因此,作为一种爱好,我已经用 C++ 做算法大约 3 个月了。到目前为止,我从来没有遇到过谷歌无法解决的问题。我正在尝试从将转换为哈希表的文本文件中读取,但是当我尝试从文件中捕获数据时,它以空格结尾。这是代码
#include <iostream>
#include <fstream>
int main()
{
using namespace std;
ifstream file("this.hash");
file >> noskipws;
string thing;
file >> thing;
cout << thing << endl;
return 0;
}
我知道 noskipws 标志我只是不知道如何正确实现它