本地化库
本地环境设施包含字符分类和字符串校对、数值、货币及日期/时间格式化和分析,以及消息取得的国际化支持。本地环境设置控制流 I/O 、正则表达式库和 C++ 标准库的其他组件的行为。
平面类别
从输入字符序列中解析时间/日期值到 std::tm 中
std::time_get
template< class CharT, |
类模板 std::time_get
封装日期和时间分析规则。 I/O 操纵符 std::get_time 用 I/O 流的 locale 的 std::time_get
平面转换文本输入为 std::tm 对象。
继承图
类型要求
- InputIt 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。 |
特化
标准库提供二个孤立(独立于本地环境的)全特化和二个部分特化:
定义于头文件 | |
std::time_get<char> | 分析日期和时间的窄字符串表示 |
std::time_get<wchar_t> | 分析日期和时间的宽字符串表示 |
std::time_get<char, InputIt> | 用定制输入迭代器分析日期和时间的窄字符串表示 |
std::time_get<wchar_t, InputIt> | 用定制输入迭代器分析日期和时间的宽字符串表示 |
另外, C++ 程序中构造的每个 locale 对象都实装这些特化的其自身(本地环境限定)版本。
成员类型
成员类型 | 定义 |
char_type | CharT |
iter_type | InputIt |
成员函数
(构造函数) | 构造新的 time_get 平面 (公开成员函数) |
(析构函数) | 销毁 time_get 平面 (受保护成员函数) |
date_order | 调用 do_date_order (公开成员函数) |
get_time | 调用 do_get_time (公开成员函数) |
get_date | 调用 do_get_date (公开成员函数) |
get_weekday | 调用 do_get_weekday (公开成员函数) |
get_monthname | 调用 do_get_monthname (公开成员函数) |
get_year | 调用 do_get_year (公开成员函数) |
get (C++11) | 调用 do_get (公开成员函数) |
成员对象
static std::locale::id id | locale 的 id (公开成员对象) |
受保护成员函数
do_date_order [虚] | 获得偏好的日、月、年顺序 (虚受保护成员函数) |
do_get_time [虚] | 从输入流释出时、分、秒 (虚受保护成员函数) |
do_get_date [虚] | 从输入流输出月、日以及年 (虚受保护成员函数) |
do_get_weekday [虚] | 从输入流释出星期的日名 (虚受保护成员函数) |
do_get_monthname [虚] | 从输入流释出月名 (虚受保护成员函数) |
do_get_year [虚] | 从输入流释出年份 (虚受保护成员函数) |
do_get [虚] (C++11) | 从输入流释出日期/时间组分,按照指定格式 (虚受保护成员函数) |
继承自 std::time_base
类型 | 定义 |
dateorder | 日期顺序枚举类型,定义值 no_order 、 dmy 、 mdy 、 ymd 及 ydm |
调用示例 windows
#include <iostream>
#include <sstream>
#include <locale>
#include <iomanip>
#include <vector>
#include <Windows.h>
std::vector<std::wstring> locals;
BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam)
{
locals.push_back(pStr);
return TRUE;
}
std::string stows(const std::wstring& ws)
{
std::string curLocale = setlocale(LC_ALL, NULL); // curLocale = "C";
setlocale(LC_ALL, "chs");
const wchar_t* _Source = ws.c_str();
size_t _Dsize = 2 * ws.size() + 1;
char *_Dest = new char[_Dsize];
memset(_Dest, 0, _Dsize);
wcstombs(_Dest, _Source, _Dsize);
std::string result = _Dest;
delete[]_Dest;
setlocale(LC_ALL, curLocale.c_str());
return result;
}
int main()
{
EnumSystemLocalesEx(MyFuncLocaleEx, LOCALE_ALTERNATE_SORTS, NULL, NULL);
for (std::vector<std::wstring>::const_iterator str = locals.begin();
str != locals.end(); ++str)
{
std::tm t = {};
std::istringstream istringstream("2024-04-27 23:12:34");
istringstream.imbue(std::locale(stows(*str)));
istringstream >> std::get_time(&t, "%Y-%m-%d %H:%M:%S");
std::cout << stows(*str) << " ";
if (istringstream.fail())
{
std::cout << "Parse failed" << std::endl;
}
else
{
std::cout << std::put_time(&t, "%c") << std::endl;
}
}
return 0;
}
输出
de-DE_phoneb 04/27/24 23:12:34
es-ES_tradnl 04/27/24 23:12:34
hu-HU_technl 04/27/24 23:12:34
ja-JP_radstr 04/27/24 23:12:34
ka-GE_modern 04/27/24 23:12:34
x-IV_mathan 04/27/24 23:12:34
zh-CN_phoneb 04/27/24 23:12:34
zh-CN_stroke 04/27/24 23:12:34
zh-HK_radstr 04/27/24 23:12:34
zh-MO_radstr 04/27/24 23:12:34
zh-MO_stroke 04/27/24 23:12:34
zh-SG_phoneb 04/27/24 23:12:34
zh-SG_stroke 04/27/24 23:12:34
zh-TW_pronun 04/27/24 23:12:34
zh-TW_radstr 04/27/24 23:12:34