std::toupper
定义于头文件 <cctype>
|
||
int toupper( int ch ); |
||
按照当前安装的 C 本地环境所定义的字符转换规则,转换给定字符为大写。
默认 "C" 本地环境中,分别以大写字母 ABCDEFGHIJKLMNOPQRSTUVWXYZ
替换下列小写字母 abcdefghijklmnopqrstuvwxyz
。
参数
ch | - | 要转化的字符。若 ch 的值不能表示为 unsigned char 且不等于 EOF ,则行为未定义。
|
返回值
被转换的字符,或若当前 C 本地环境不定义大写版本则为 ch
。
注意
同所有其他来自 <cctype> 的函数,若参数值既不能表示为 unsigned char 又不等于 EOF
则 std::toupper
的行为未定义。为了以简单的 char (或 signed char )安全使用此函数,首先要将参数转换为 unsigned char :
char my_toupper(char ch) { return static_cast<char>(std::toupper(static_cast<unsigned char>(ch))); }
类似地,迭代器的值类型为 char 或 signed char 时,不应直接将它们用于标准算法。而是要首先转换值为 unsigned char :
std::string str_toupper(std::string s) { std::transform(s.begin(), s.end(), s.begin(), // static_cast<int(*)(int)>(std::toupper) // 错误 // [](int c){ return std::toupper(c); } // 错误 // [](char c){ return std::toupper(c); } // 错误 [](unsigned char c){ return std::toupper(c); } // 正确 ); return s; }
示例
运行此代码
#include <iostream> #include <cctype> #include <clocale> int main() { unsigned char c = '\xb8'; // ISO-8859-15 中的字符 ž // 但在 ISO-8859-1 中为 ¸ (下加符) std::setlocale(LC_ALL, "en_US.iso88591"); std::cout << std::hex << std::showbase; std::cout << "in iso8859-1, toupper('0xb8') gives " << std::toupper(c) << '\n'; std::setlocale(LC_ALL, "en_US.iso885915"); std::cout << "in iso8859-15, toupper('0xb8') gives " << std::toupper(c) << '\n'; }
输出:
in iso8859-1, toupper('0xb8') gives 0xb8 in iso8859-15, toupper('0xb8') gives 0xb4
参阅
转换字符为小写 (函数) | |
用本地环境的 ctype 刻面将字符转换为大写 (函数模板) | |
转换宽字符为大写 (函数) |