C++ o matching function for call to 'transform...错误[转]
C++错误:\Page499\main.cpp|15|error: no matching function for call to 'transform(__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, <unresolved overloaded function type>)'|
我从《C++标准程序库》中抄了一段代码,但是有这个错误,我不明白为什么?于是我将错误在网上找了一下。我找到了这篇文章,便转了过来。
原文内容:
初学C++哈,不知道这个错误是不是很silly,高手轻拍。情况如下: #include using namespace std; int main (int argc, char * const argv[]){ 编译死活不通过: $ g++ -g -Wall strToUpper.cpp -o strToUpper 我们先看看这个函数的定义: template OutIter transform(InIter start, InIter end, OutIter result, Func unaryFunc) 它要求参数和返回值都要是char。Linux中将toupper实现为一个宏而不是函数: /* Note: this is decimal, not hex, to avoid accidental promotion to unsigned */ __ctype_inline int toupper(int __c) __ctype_inline int tolower(int __c) 有三种解决方法: 1.因为在全局命名空间中有实现的函数(而不是宏),所以我们明确命名空间,这并不是总奏效,但是在我的g++环境中没有问题: transform(str.begin(), str.end(), str.begin(), ::toupper); 2.自己写一个函数出来—wraper inline char charToUpper(char c) 3.强制转化:将toupper转换为一个返回值为int,参数只有一个int的函数指针。 transform(str.begin(), str.end(), str.begin(), (int (*)(int))toupper); |
原文链接:http://edu.codepub.com/2010/0515/22718.php