繁体   English   中英

istream_iterator从文件读取值到集合

[英]istream_iterator read values from file into set

我无法使用istream_iterator达到我需要的目的。 我有一个文件,我想逐行读到一个集合。 我必须使用迭代器,我想知道我的代码或方法是否有问题。

非常感谢帮助。 这是我正在编写的代码的简化版本:

main.cpp中

#include <iostream>
#include <fstream>
#include <string>
#include <set>

using namespace std;

int main() {

    ifstream file("fruits.txt");

    set<string> M;

    copy(istream_iterator<string>(file),
         istream_iterator<string>(),
         [](string & s){ M.insert(s); });

    for( auto val : M ) {
        cout << val << ", ";
    }

    return 0;
}

fruits.txt

banana
apple
pear
strawberry
blueberry
peach
pear
apple

错误:

main.cpp:16:26: Variable 'M' cannot be implicitly
captured in a lambda with no capture-default specified


/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr
/include/c++/v1/algorithm:1750:49: Cannot increment value of type '(lambda at 
/Users/cnapoli22/Downloads/TEST SHIT/TEST SHIT/main.cpp:16:10)'

copy的最后一个参数需要是迭代器,而不是lambda:

#include <algorithm>
#include <fstream>
#include <iostream>
#include <iterator>
#include <set>
#include <string>

using namespace std;

int main()
{
    ifstream file("fruits.txt");

    set<string> M;

    copy(istream_iterator<string>(file),
         istream_iterator<string>(),
         inserter(M, M.end()));

    for (auto const& val : M)
    {
        cout << val << ", ";
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM