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

来自cppreference.com
< cpp‎ | locale‎ | ctype
 
 
 
 
在标头 <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) 对字符数组 [begend) 中每个存在大写形式的字符,以其大写形式替换该字符。

参数

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

返回值

1,3) 大写字符,或若无列于此本地环境的大写形式则为 c
2,4) end

注解

此函数只能进行 1:1 字符映射,例如 'ß' 的大写形式(有一些例外)是双字符字符串 "SS",它无法以 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 << "\'" << c << "' 的大写形式是 " << up << '\n';
    else
        std::wcout << '\'' << c << "' 没有大写形式\n";
}
 
int main()
{
    std::locale::global(std::locale("en_US.utf8"));
    std::wcout.imbue(std::locale());
    std::wcout << "美国英语 UTF-8 本地环境中:\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'ß');
 
    std::wstring str = L"Hello, World!";
    std::wcout << "字符串 '" << str << "' 的大写形式是 ";
    f.toupper(&str[0], &str[0] + str.size());
    std::wcout << "'" << str << "'\n";
}

输出:

美国英语 UTF-8 本地环境中:
's' 的大写形式是 S
'ſ' 的大写形式是 S
'ß' 没有大写形式
字符串 'Hello, World!' 的大写形式是 'HELLO, WORLD!'

参阅

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