gpt4 book ai didi

c++ - 使用 ostream_iterator 将映射复制到文件中

转载 作者:搜寻专家 更新时间:2023-10-31 00:09:58 26 4
gpt4 key购买 nike

我有一个类型为 <string, int>STL 映射 ,我需要将该 map 复制到文件中,但我无法输入 ostream_iterator 的类型

map<string, int> M;

ofstream out("file.txt");
copy( begin(M), end(M), ostream_iterator<string, int>(out , "\n") );

Error message error: no matching function for call to 'std::ostream_iterator, int>::ostream_iterator(std::ofstream&, const char [2])'|

既然 map M 是一个类型,为什么 ostream_iterator 不采用它的类型?

最佳答案

如果您仔细查看 std::ostream_iterator 的声明 here ,您会注意到您对 std::ostream_iterator 的使用是不正确的,因为您应该将打印元素的类型指定为第一个模板参数。

std::map M 中的元素类型是std::pair< const std::string, int >。但是你不能把 std::pair< const std::string, int > 作为第一个模板参数,因为没有默认的方式来打印 std::pair.

一种可能的解决方法是使用 std::for_each 和 lambda:

std::ofstream out("file.txt");

std::for_each(std::begin(M), std::end(M),
[&out](const std::pair<const std::string, int>& element) {
out << element.first << " " << element.second << std::endl;
}
);

关于c++ - 使用 ostream_iterator 将映射复制到文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40690125/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com