本地化库
本地环境设施包含字符分类和字符串校对、数值、货币及日期/时间格式化和分析,以及消息取得的国际化支持。本地环境设置控制流 I/O 、正则表达式库和 C++ 标准库的其他组件的行为。
平面类别
定义字符分类表
std::ctype
template< class CharT > |
类 ctype 封装字符分类特征。所有通过 std::basic_istream<charT> 进行的流输入操作用感染于流中的 std::ctype<charT> 鉴别空白符以将输入记号化。流输出操作在输出前应用 std::ctype<charT>::widen() 到窄字符参数。
继承图
标准库提供二个孤立(独立于本地环境)的特化:
定义于头文件 | |
std::ctype<char> | 提供最小 "C" 本地环境分类的窄字符等价版本。此特化用表查找字符分类 |
std::ctype<wchar_t> | 提供适合于原生字符集的宽字符分类 |
另外, C++ 程序中构造的每个 locale 对象实现其自身(本地环境限定)的这些版本。
成员类型
成员类型 | 定义 |
char_type | CharT |
调用 do_toupper & 转换一个或多个字符为大写
std::ctype<CharT>::toupper,
std::ctype<CharT>::do_toupper
public: | (1) | |
public: | (2) | |
protected: | (3) | |
protected: | (4) |
1,2) 公开成员函数,调用最终导出类上的受保护虚成员函数 do_toupper
。
3) 若此 locale 定义 c
的大写形式,则转换它为大写形式。
4) 对字符数组 [beg, end)
中每个存在大写形式的字符,以其大写形式替换该字符。
参数
c | - | 要转换的字符 |
beg | - | 指向要转换的数组中首字符的指针 |
end | - | 指向要转换的数组尾后一位置的指针 |
返回值
1,3) 大写字符,或若无列于此 loacale 的大写形式则为 c
。
2,4) end
。
注意
此函数只能进行 1:1 字符映射,例如 'ß' 的大写形式(有一些例外)是双字符字符串 "SS" ,它无法以 do_toupper
获得。
调用示例
#include <locale>
#include <iostream>
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 << std::endl;
}
else
{
std::wcout << '\'' << c << "' has no upper case form" << std::endl;
}
}
int main()
{
std::locale::global(std::locale("Chinese (Simplified)_China.936"));
std::wcout.imbue(std::locale());
std::wcout << "Chinese (Simplified)_China.936 locale:" << std::endl;
auto& f = std::use_facet<std::ctype<wchar_t>>(std::locale());
try_upper(f, L's');
try_upper(f, L'w');
try_upper(f, L'q');
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 << "'" << std::endl;
return 0;
}
输出
Chinese (Simplified)_China.936 locale:
Upper case form of 's' is S
Upper case form of 'w' is W
Upper case form of 'q' is Q
Uppercase form of the string 'Hello, World!' is 'HELLO, WORLD!'