84669 人学习
152542 人学习
20005 人学习
5487 人学习
7821 人学习
359900 人学习
3350 人学习
180660 人学习
48569 人学习
18603 人学习
40936 人学习
1549 人学习
1183 人学习
32909 人学习
菜鸟一名,求助,百度了这段错误提示,可是没找到答案。请说简单一点,刚学c++没多久。谢谢
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
错误信息很明显,没这个函数。
话说C++里本来就没有toupper(string)这么个函数,C里也没有toupper(char *)这么个函数。你只能一个字符一个字符的用toupper(char)。
我这里看到的错误是
toupper.cc: In function ‘int main()’: toupper.cc:17: error: cannot convert ‘std::basic_string<char, std::char_traits<char>, std::allocator<char> >’ to ‘int’ for argument ‘1’ to ‘int toupper(int)’
http://www.cplusplus.com/reference/cctype/toupper/ 从这篇文档看来,toupper应该是C函数,只不过它接受的是int,题主传的是string,所以not match了。
toupper
C
int
string
not match
错误信息很明显,没这个函数。
话说C++里本来就没有toupper(string)这么个函数,C里也没有toupper(char *)这么个函数。你只能一个字符一个字符的用toupper(char)。
我这里看到的错误是
http://www.cplusplus.com/reference/cctype/toupper/
从这篇文档看来,
toupper
应该是C
函数,只不过它接受的是int
,题主传的是string
,所以not match
了。