public member function
<regex>

std::regex_traits::getloc

locale_type getloc() const;
获取区域设置
返回与 regex_traits 对象关联的 locale 对象。

返回的值是在上次调用 regex_traits::imbue 中设置的对象,如果未在对象上调用 regex_traits::imbue,则返回全局区域设置 (locale::global)。

此函数由 regex::getloc 调用以获取区域设置。

参数



返回值

regex_traits 对象关联的 locale 对象。
locale_type是一个成员类型,在 regex_traits 中定义为标准 locale 类型的别名。

另见