这来自更大的上下文,但是我已经删除了很多代码来简化问题。如果你觉得我遗漏了任何东西请告诉我。
假设您有一个模板类定义为:
#include <map>
#include <vector>
#include <string>
#include <fstream>
#include <iostream>
#include <iterator>
#include <algorithm>
template <class key, class container, class container_type>
class file_to_map
{
public:
file_to_map()
{
m_file = "";
}
file_to_map(std::string file)
{
m_file = file;
}
~file_to_map()
{
}
std::map<key, container>& get_map()
{
return m_map;
}
void set_file(const std::string file)
{
m_file = file;
}
void insert_into_map(key insert, container_type value)
{
m_map[insert].insert(value);
}
friend std::ostream& operator<< (std::ostream &out, file_to_map<key, container, container_type> &obj)
{
typedef typename std::map<key, container>::const_iterator mapItr;
mapItr mbi = obj.m_map.begin();
mapItr emi = obj.m_map.end();
while (mbi != emi) {
out << " -- " << mbi->first << " -- " << std::endl;
container::iterator cbi;
++mbi;
}
return out;
}
friend std::istream& operator>> (std::ifstream &in, file_to_map<key, container, container_type> &obj)
{
if (in.is_open())
in.close();
if (obj.m_file == "")
return in;
in.open(obj.m_file.c_str(), std::ios::in);
if (in.fail() || in.bad()) {
in.close();
return in;
}
std::vector<key> tmp;
typedef std::istream_iterator<key> string_input;
copy(string_input(in), string_input(), back_inserter(tmp));
typename std::vector<key>::iterator bvi = tmp.begin();
typename std::vector<key>::iterator evi = tmp.end();
while (bvi != evi) {
obj.m_map[*(bvi)] = container();
++bvi;
}
in.close();
return in;
}
private:
std::map<key, container> m_map;
std::string m_file;
};
并在朋友方法“operator<<
”
您想要打印地图的分数和通用container
如何进行此操作?如何获得适当的迭代器来遍历泛型container
的内容。
我正在尝试:
container::iterator cbi;
代码更新
使用:
friend std::ostream& operator<< (std::ostream &out, file_to_map<key, container, container_type> &obj)
{
typedef typename std::map<key, container>::const_iterator mapItr;
mapItr mbi = obj.m_map.begin();
mapItr emi = obj.m_map.end();
while (mbi != emi) {
out << " -- " << mbi->first << " -- " << std::endl;
typename container::const_iterator cbi = mbi->second.begin();
typename container::const_iterator ebi = mbi->second.end();
std::copy(cbi, mbi, std::ostream_iterator<container_type>(out, "\t\n"));
++mbi;
}
return out;
}
我收到以下编译器错误:
g++ -o file_to_map -Wall ./file_to_map.h ./main.cpp ./code_finder.cpp \
-L/usr/local/boost_1_48_0/stage/lib -lboost_filesystem -lboost_system -I /usr/local/boost_1_48_0/
In file included from ./code_finder.h:4,
from ./code_finder.cpp:1:
./file_to_map.h: In function ‘std::ostream& operator<<(std::ostream&, file_to_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::set<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&)’:
./code_finder.cpp:36: instantiated from here
./file_to_map.h:62: error: no matching function for call to ‘copy(std::_Rb_tree_const_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, operator<<(std::ostream&, file_to_map<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::set<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&)::mapItr&, std::ostream_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, char, std::char_traits<char> >)’
我错过了什么?
答案 0 :(得分:7)
使用typename
:
typename container::iterator cbi;
因为iterator
是一个从属名称,因为它取决于类模板的类型参数container
。有趣的是,如果您在其他地方更正了使用的typename
,例如在operator<<
中:
typedef typename std::map<key, container>::const_iterator mapItr;
由于您正在使用const_iterator
来表示地图,这意味着您将使用地图的const迭代器得到的容器对象将是const
个对象,这反过来意味着您还需要使用const_iterator
作为容器,因为它们是地图的值。所以我认为你需要使用它:
typename container::const_iterator cbi; //use this instead!
回复你的编辑:
我在这里看到一个错字:
typename container::const_iterator cbi = mbi->second.begin();
typename container::const_iterator ebi = mbi->second.end();
std::copy(cbi, mbi, std::ostream_iterator<container_type>(out, "\t\n"));
// ^^^ typo
std::copy
的第二个参数应该是ebi
,而不是mbi
。这就是为什么我通常将这些变量命名为begin
和end
,而不是cbi
和ebi
。