初學C++哈,不知道這個錯誤是不是很silly,高手輕拍。情況如下:
程式的意思很簡單,去把Hello都轉換為大寫。
編譯死活不通過:
後來查明原因如下——
我們先看看這個函數的定義:
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);