Aracılığıyla paylaş


locale::classic

Durağan üye işlev Klasik c yerel temsil eden bir yerel ayar nesnesi döndürür.

static const locale& classic( );

Dönüş Değeri

c Bölgesel başvuru.

Notlar

u Klasik c yerel ayar olan.s. İngilizce ASCII yerel değil uluslararası programlarda örtülü olarak kullanılan standart c Kitaplığı içinde.

Örnek

// locale_classic.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;

   if (loc2 == locale::classic( ) )
      cout << "The previous locale was classic." << endl;
   else
      cout << "The previous locale was not classic." << endl;

   if (loc1 == locale::classic( ) )
      cout << "The current locale is classic." << endl;
   else
      cout << "The current locale is not classic." << endl;
}
  
  
  
  

Gereksinimler

Başlık: <locale>

Namespace: std

Ayrıca bkz.

Başvuru

locale Class