locale::name
格納されているロケールの名前を返します。
string name( ) const;
戻り値
ロケールの名前を示す文字列。
使用例
// locale_name.cpp
// compile with: /EHsc
#include <iostream>
#include <string>
#include <locale>
using namespace std;
int main( )
{
locale loc1( "german" );
locale loc2 = locale::global( loc1 );
cout << "The name of the previous locale is: "
<< loc2.name( ) << "." << endl;
cout << "The name of the current locale is: "
<< loc1.name( ) << "." << endl;
}
必要条件
ヘッダー: <locale>
名前空間: std