使用Toupper()函数连接时无法打印字符串
我在使用Toupper()函数时遇到问题:
编码:
#include <iostream>
#include <string>
using namespace std;
int main (){
string input {"ab"};
string output {""};
cout << output + toupper(input[0]);
return 0;
}
错误为:
没有与这些操作数匹配的运算符&q;+&q;--操作数类型为:std::_cx11::string+int。
但是如果我写:
#include <iostream>
#include <string>
using namespace std;
int main (){
string input {"ab"};
string output {""};
char temp = toupper(input[0]);
cout << output + temp;
return 0;
}
它工作得很好。有谁能说出原因吗?
解决方案
toupper
的返回值为int
,std::string
和int
不存在operator+(int)
,无法添加。您的char temp
在初始化过程中将int
返回值隐式转换为char
,由于std::string
有一个operator+(char)
重载,因此这是可行的。虽然您可以使用static_cast
来复制相同的行为:
cout << output + static_cast<char>(toupper(input[0]));
作为附注,ctype
函数通常是要传递的可表示为unsigned char
或EOF
的预期值,因此您应该在传递char
参数之前将其转换为unsigned char
。
相关文章