public member function
<regex>

std::regex_traits::imbue

locale_type imbue (locale_type loc);
灌输区域设置
locregex_traits 对象关联。

在标准 regex_traits 中,对象在构造时使用全局区域设置 (locale::global)。 通过调用此函数,将分配新的区域设置,并清除对象中缓存的任何信息。

此函数由 regex::imbue 调用以灌输新的区域设置。

参数

loc
locale 对象将被灌输为 regex_traits 的新区域设置。
locale_type是一种成员类型,在 regex_traits 中定义为标准 locale 类型的别名。

返回值

调用之前与 regex_traits 对象关联的 locale 对象。
locale_type是一种成员类型,在 regex_traits 中定义为标准 locale 类型的别名。

另见