C++ STL string 大小写转换时的 no matching function for call to ‘transform 错误

本文介绍使用C++ STL中的transform函数进行字符串大小写转换的方法,并解决了由于C标准库和STL模板函数冲突导致的编译错误问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

参考:http://forums.codeguru.com/showthread.php?489969-no-matching-function-transform


这里介绍了 C++ STL string 大小写转换的代码,但是要注意,可能有些机器用下面的代码编译不过

#include <cctype>	// toupper, tolower
#include <iostream>
#include <string>
#include <algorithm>    // transform
using namespace std;

int main()
{
   string str = "abcdADcdeFDde!@234";
   transform(str.begin(), str.end(), str.begin(), toupper);
   cout << str << endl;
   transform(str.begin(), str.end(), str.begin(), tolower);
   cout << str << endl;
   return 0;
}

可能的错误提示如下:

error: no matching function for call to ‘transform(__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, <unknown type>)’

这里 说明了原因:

The problem is that the version of std::tolower inherited from the C standard library is a non-template function, but there are other versions of std::tolower that are function templates, and it is possible for them to be included depending on the standard library implementation. You actually want to use the non-template function, but there is ambiguity when just tolower is provided as the predicate.

翻译过来就是说,既有C版本的toupper/tolower函数,又有STL模板函数toupper/tolower,二者存在冲突。


解决办法:

在toupper/tolower前面加::,强制指定是C版本的(这时也不要include <cctype>了):

#include <iostream>
#include <string>
#include <algorithm>    // transform
using namespace std;

int main()
{
   string str = "abcdADcdeFDde!@234";
   transform(str.begin(), str.end(), str.begin(), ::toupper);
   cout << str << endl;
   transform(str.begin(), str.end(), str.begin(), ::tolower);
   cout << str << endl;
   return 0;
}

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值