我今天收到了一些代码,它在std :: string上使用std :: transform使其全部小写。发件人已在Visual Studio 2010中编写和编译代码:
using namespace std;
string test = "TEST";
transform(test.begin(), test.end(), test.begin(), tolower);
我在OSx上用GCC和/或Clang编译它,并且遇到编译错误,因为它涉及命名空间的冲突。
确实有一堆已回答的问题解决了全局命名空间vs local(:: tolower vs std :: tolower),但这是因为这段代码实际上适用于VS.
我想回答的问题:
- 这是一个ideone片段(有错误):http://ideone.com/qvUAMw
- 这是一个有效的片段(有效):http://ideone.com/lk0H5d
注意:我在OSx Mountain Lion上使用GCC 4.2和Clang(425.0.24 LLVM 3.2svn)
答案 0 :(得分:1)
这里的问题是双重的。首先,如果你没有专门#include <cctype>
,你可能会得到一个tolower
这是一个宏,而不是一个函数(虽然我不知道这是否真的是一个问题,这是否会打破标准合规。)
其次,在C ++中tolower
被重载了。您需要选择要使用的特定重载:
transform(test2.begin(), test2.end(), test2.begin(),
static_cast<int(*)(int)>(tolower));
但我不知道std::
获取重载版本的原因,而::
没有。std::ctype
没有。无论如何,我建议您远离这些C函数,而是使用<locale>
标题中的tolower
,这会提供更好的{{1}}: