Namespaces
Variants

std::ctype<CharT>:: toupper, std::ctype<CharT>:: do_toupper

From cppreference.net
定义于头文件 <locale>
public :
CharT toupper ( CharT c ) const ;
(1)
public :
const CharT * toupper ( CharT * beg, const CharT * end ) const ;
(2)
protected :
virtual CharT do_toupper ( CharT c ) const ;
(3)
protected :
virtual const CharT * do_toupper ( CharT * beg, const CharT * end ) const ;
(4)
1,2) 公开成员函数,调用最派生类的受保护虚成员函数 do_toupper
3) 如果此区域设置定义了对应的大写形式,则将字符 c 转换为大写。
4) 对于字符数组 [ beg , end ) 中的每个字符,若存在对应的大写形式,则将该字符替换为其大写形式。

目录

参数

c - 待转换的字符
beg - 指向待转换字符数组中首个字符的指针
end - 指向待转换字符数组末尾后一位的指针

返回值

1,3) 大写字符,若本地化未列出大写形式则为 c
2,4) end

注释

该函数仅能执行1:1字符映射,例如'ß'的大写形式是双字符字符串"SS"(存在一些例外情况——参见 «Capital ẞ» ),这无法通过 do_toupper 实现。

示例

#include <iostream>
#include <locale>
void try_upper(const std::ctype<wchar_t>& f, wchar_t c)
{
    wchar_t up = f.toupper(c);
    if (up != c)
        std::wcout << "Upper case form of \'" << c << "' is " << up << '\n';
    else
        std::wcout << '\'' << c << "' has no upper case form\n";
}
int main()
{
    std::locale::global(std::locale("en_US.utf8"));
    std::wcout.imbue(std::locale());
    std::wcout << "In US English UTF-8 locale:\n";
    auto& f = std::use_facet<std::ctype<wchar_t>>(std::locale());
    try_upper(f, L's');
    try_upper(f, L'ſ');
    try_upper(f, L'δ');
    try_upper(f, L'ö');
    try_upper(f, L'ß');
    std::wstring str = L"Hello, World!";
    std::wcout << "Uppercase form of the string '" << str << "' is ";
    f.toupper(&str[0], &str[0] + str.size());
    std::wcout << '\'' << str << "'\n";
}

输出:

In US English UTF-8 locale:
Upper case form of 's' is S
Upper case form of 'ſ' is S
Upper case form of 'δ' is Δ
Upper case form of 'ö' is Ö
'ß' has no upper case form
Uppercase form of the string 'Hello, World!' is 'HELLO, WORLD!'

参见

调用 do_tolower
(公开成员函数)
将字符转换为大写形式
(函数)
将宽字符转换为大写形式
(函数)