std::basic_streambuf::pubimbue, std::basic_streambuf::imbue
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
std::locale pubimbue( const std::locale& loc ); |
(1) | |
protected: virtual std::locale imbue( const std::locale& loc ); |
(2) | |
相关的语言环境
1) 调用
2) imbue(loc)
最派生类原文:
Calls
imbue(loc)
of the most derived class此功能的基类版本没有任何效果。派生类可以重载这个函数为了了解该语言环境的变化。派生类可以缓存的语言环境和各方面之间调用
imbue()
.原文:
The base class version of this function has no effect. The derived classes may override this function in order to be informed about the changes of the locale. The derived class may cache the locale and member facets between calls to
imbue()
.目录 |
[编辑] 参数
loc | - | Locale对象来关联
|
[编辑] 返回值
相关的区域设置.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
获得相关的区域设置的副本 原文: obtains a copy of the associated locale (公共成员函数) |