为什么不能“transform(s.begin(),s.end(),s.begin(),tolower)"?能顺利遵守吗?
给定代码:
#include <iostream>
#include <cctype>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string s("ABCDEFGHIJKL");
transform(s.begin(),s.end(),s.begin(),tolower);
cout<<s<<endl;
}
我收到错误:
没有匹配的函数调用 transform(__gnu_cxx::__normal_iterator
未解析的重载函数类型"是什么意思?
如果我用我编写的函数替换 tolower
,它就不会再出错了.
If I replace the tolower
with a function I wrote, it no longer errors.
推荐答案
尝试使用 ::tolower
.这为我解决了问题.
Try using ::tolower
. This fixed the problem for me.
相关文章