Why can#39;t quot;transform(s.begin(),s.end(),s.begin(),tolower)quot; be complied successfully?(为什么不能“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.
这篇关于为什么不能“transform(s.begin(),s.end(),s.begin(),tolower)"?能顺利遵守吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么不能“transform(s.begin(),s.end(),s.begin(),tolower)"?能顺利遵守吗?


基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01