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++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 近似搜索的工作原理 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 静态初始化顺序失败 2022-01-01