basic_streambuf::getloc
basic_streambuf のオブジェクトのロケールを取得します。
locale getloc( ) const;
戻り値
格納されているロケール オブジェクト。
解説
関連情報については、ios_base::getlocを参照してください。
使用例
// basic_streambuf_getloc.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout << cout.rdbuf( )->getloc( ).name( ).c_str( ) << endl;
}
必要条件
ヘッダー: <streambuf>
名前空間: std