std::toupper
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cctype> 中定义
|
||
int toupper( int ch ); |
||
。将指定的字符根据规则所定义的当前安装的C语言环境的字符转换成大写.
原文:
Converts the given character to uppercase according to the character conversion rules defined by the currently installed C locale.
[编辑] 。参数。
ch | - | 。要转换的字符。
|
===。 返回值。===
。转换的字符或
ch
,如果没有的大写版本被定义为当前的C语言环境.原文:
Converted character or
ch
if no uppercase version is defined by the current C locale.[编辑] 。为例。
#include <iostream> #include <cctype> #include <clocale> int main() { char c = '\xb8'; // the character ž in ISO-8859-15 // but ¸ (cedilla) in 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方面的 原文: converts a character to uppercase using the ctype facet of a locale (函数模板) | |
一个宽字符转换为大写 原文: converts a wide character to uppercase (函数) | |
C documentation for toupper
|