为什么不能“transform(s.begin(),s.end(),s.begin(),tolower)"?能顺利遵守吗? [英] Why can't "transform(s.begin(),s.end(),s.begin(),tolower)" be complied successfully?

查看:18
本文介绍了为什么不能“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, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __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.

这篇关于为什么不能“transform(s.begin(),s.end(),s.begin(),tolower)"?能顺利遵守吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆