combine
描述 (Description)
它构造修改一个facet的locale副本,并返回一个由* this副本构造的locale对象,但模板参数Facet指定的facet除外,它取自x。
声明 (Declaration)
以下是std :: locale :: combine的声明。
C++98template locale combine (const locale& x) const;
C++11template locale combine (const locale& x) const;
参数 (Parameters)
x - 这是一个区域设置对象,其facet Facet由新的区域设置使用。
返回值 (Return Value)
它返回生成的区域设置对象,该对象没有名称。
异常 (Exceptions)
Basic guarantee - 如果抛出异常,则对象处于有效状态。
数据竞争 (Data races)
区域设置对象已修改。
例子 (Example)
在下面的例子中解释了std :: locale :: combine。#include
#include
int main () {
std::locale loc("");
loc = loc.combine< std::num_put > (std::locale::classic());
std::cout.imbue(loc);
std::cout << 3.1 << '\n';
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果 -3.1