问题的根源 - 加速C ++,问题8-5
我编写了一个小程序来检查字符串输入行,并计算一个单词出现在给定行上的次数。以下代码实现了这一点:
#include <map>
#include <iostream>
#include <string>
#include <vector>
#include <list>
#include <cctype>
#include <iterator>
using std::vector; using std::string;
using std::cin; using std::cout;
using std::endl; using std::getline;
using std::istream; using std::string;
using std::list; using std::map;
using std::isspace; using std::ostream_iterator;
using std::allocator;
inline void keep_window_open()
{
cin.clear();
cout << "Please enter EOF to exit\n";
char ch;
cin >> ch;
return;
}
template <class Out>
void split(const string& s, Out os)
{
vector<string> ret;
typedef string::size_type string_size;
string_size i = 0;
// invariant: we have processed characters `['original value of `i', `i)'
while (i != s.size()) {
// ignore leading blanks
// invariant: characters in range `['original `i', current `i)' are all spaces
while (i != s.size() && isspace(s[i]))
++i;
// find end of next word
string_size j = i;
// invariant: none of the characters in range `['original `j', current `j)' is a space
while (j != s.size() && !isspace(s[j]))
++j;
// if we found some nonwhitespace characters
if (i != j) {
// copy from `s' starting at `i' and taking `j' `\-' `i' chars
*os++ = (s.substr(i, j - i));
i = j;
}
}
}
// find all the lines that refer to each word in the input
map<string, vector<int> > xref(istream& in) // works
// now try to pass the template function as an argument to function - what do i put for templated type?
//map<string, vector<int> > xref(istream& in, void find_words(vector<string, typedef Out) = split) #LINE 1#
{
string line;
int line_number = 0;
map<string, vector<int> > ret;
// read the next line
while (getline(in, line)) {
++line_number;
// break the input line into words
vector<string> words; // works // #LINE 2#
split(line, back_inserter(words)); // #LINE 3#
//find_words(line, back_inserter(words)); // #LINE 4# attempting to use find_words as an argument to function
// remember that each word occurs on the current line
for (vector<string>::const_iterator it = words.begin();
it != words.end(); ++it)
ret[*it].push_back(line_number);
}
return ret;
}
int main()
{
cout << endl << "Enter lines of text, followed by EOF (^Z):" << endl;
// call `xref' using `split' by default
map<string, vector<int> > ret = xref(cin);
// write the results
for (map<string, vector<int> >::const_iterator it = ret.begin();
it != ret.end(); ++it) {
// write the word
cout << it->first << " occurs on line(s): ";
// followed by one or more line numbers
vector<int>::const_iterator line_it = it->second.begin();
cout << *line_it; // write the first line number
++line_it;
// write the rest of the line numbers, if any
while (line_it != it->second.end()) {
cout << ", " << *line_it;
++line_it;
}
// write a new line to separate each word from the next
cout << endl;
}
keep_window_open();
return 0;
}
如您所见, split 函数是一个模板函数,可根据需要处理各种类型的输出迭代器。
当我尝试通过传递模板化的 split 函数作为参数来推广 xref 函数时,我的问题出现了。我似乎无法使类型正确。
所以我的问题是,你能否将模板函数作为参数传递给另一个函数,如果是这样,你是否必须在传递它之前声明所有类型?或者编译器可以从模板化函数在体内使用的方式推断出类型吗?
为了演示我得到的错误,请注释掉现有的 xref 函数标头,并取消注释我正在尝试使用的备用标头(正好在下面的通信行下面。)同时注释这些行标记为LINE 2和LINE 3并取消注释LINE 4,它试图使用参数 find_words (默认为拆分。)
感谢您的反馈!
答案 0 :(得分:1)
或者编译器可以从模板化函数在体内使用的方式推断出类型吗?
该问题的答案是:否。
您需要将'typedef Out'更改为back_inserter返回的类型,并且您需要将相同的类型提供给“= split&lt; type_here&gt;”。
back_inserter返回的类型由标准指定,因此您应该能够在C ++库引用中找到它。
您也可以尝试将外部参照功能转换为一个模板,该模板将函数模板作为参数(及其类型)。我从来没有尝试过类似的东西,但不管功能如何,所以我不知道会带来多少成功。它可能是你想要的,也可能不是。
如果您使用的是c ++ 0x,那么您可以选择更多可能更符合您需求的选项。
答案 1 :(得分:1)
以下是解决方法。 您可以使用具有静态函数的类
struct split
{
template <class Out>
static apply(const string& s, Out os) {
// include the body of your split function or call to an existing function
}
};
现在,make xref generic
template <typename FIND_WORDS>
map<string, vector<int> > xref(istream& in, FIND_WORDS find_words = split())
{
// replace #2 and #3 by
find_words.apply(line, back_inserter(words));
};