std::basic_streambuf::getloc
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
std::locale getloc() const; |
||
返回相关的语言环境.
相关的语言环境是
pubimbue()
在最后一次调用提供的值,或如果该函数没有被调用,全局locale(std::locale()
)的价值建设的streambuf的时间.原文:
The associated locale is the value supplied to
pubimbue()
on the last call, or, if that function has not been called, the value of the global locale (std::locale()
) at the time of the construction of the streambuf.目录 |
[编辑] 参数
(无)
[编辑] 返回值
相关的语言环境.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
调用imbue() (公共成员函数) |