【C++錯誤處理】no matching function for call to transform

來源:互聯網
上載者:User

作者:gnuhpc
出處:http://www.cnblogs.com/gnuhpc/

初學C++哈,不知道這個錯誤是不是很silly,高手輕拍。情況如下:

#include #include #include using namespace std;int main (int argc, char * const argv[]){  string str = "Hello";  transform(str.begin(), str.end(), str.begin(), toupper);  cout << str << endl;    return 0;}

程式的意思很簡單,去把Hello都轉換為大寫。

編譯死活不通過:

$ g++ -g -Wall strToUpper.cpp -o strToUpperstrToUpper.cpp: In function ‘int main(int, char* const*)’:strToUpper.cpp:9: error: no matching function for call to ‘transform(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, )’</CHAR*,></CHAR*,></CHAR*,>

後來查明原因如下——

我們先看看這個函數的定義:

template   OutIter transform(InIter start, InIter end, OutIter result, Func unaryFunc)

它要求參數和傳回值都要是char。Linux中將toupper實現為一個宏而不是函數:

/usr/lib/syslinux/com32/include/ctype.h:

/* Note: this is decimal, not hex, to avoid accidental promotion to unsigned */

#define _toupper(__c) ((__c) & ~32)

#define _tolower(__c) ((__c) | 32)

__ctype_inline int toupper(int __c)

{

return islower(__c) ? _toupper(__c) : __c;

}

__ctype_inline int tolower(int __c)

{

return isupper(__c) ? _tolower(__c) : __c;

}

有三種解決方案:

1.因為在全域命名空間中有實現的函數(而不是宏),所以我們明確命名空間,這並不是總奏效,但是在我的g++環境中沒有問題:

transform(str.begin(), str.end(), str.begin(), ::toupper);

2.自己寫一個函數出來—wraper

inline char charToUpper(char c)

{

    return std::toupper(c);

}

3.強制轉化:將toupper轉換為一個傳回值為int,參數只有一個int的函數指標。

transform(str.begin(), str.end(), str.begin(), (int (*)(int))toupper);

作者:gnuhpc

出處:http://www.cnblogs.com/gnuhpc/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.