locale::name
Gibt dem gespeicherten Gebietsschemanamen zurück.
string name( ) const;
Rückgabewert
Eine Zeichenfolge, die den Namen des Gebietsschemas gibt.
Beispiel
// 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;
}
Anforderungen
Gebietsschema Header: <>
Namespace: std