Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
Miscellaneous
complex
exception
functional
iterator
limits
locale
memory
new
numeric
stdexcept
typeinfo
utility
valarray
locale
has_facet
isalnum
isalpha
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
isxdigit
locale
tolower
toupper
use_facet
standard facets:
codecvt
codecvt_base
codecvt_byname
collate
collate_byname
ctype
ctype_base
ctype_byname
messages
messages_base
messages_byname
moneypunct
moneypunct_byname
money_base
money_get
money_put
numpunct
numpunct_byname
num_get
num_put
time_base
time_get
time_get_byname
time_put
time_put_byname


locale

header

Localization library

A locale is a set of features that are culture-specific, which can be used by programs to be more portable internationally.

In C++, locales are represented by an object of the locale class. Each of these locale objects contains all the information needed to use a set of culture-dependent features. But locale objects do not contain the features directly themselves as member functions: instead, a locale object contains information about which facet objects constitute a locale, and is each one of these facet objects that implements specific features as member functions. Theoretically, this allows for features that are common to several locales to be shared by using the same facet objects.

Facets are divided into six standard categories:

categoryfacetmember functions
collatecollatecompare, hash, transform
ctypectypeis, narrow, scan_is, scan_not, tolower, toupper, widen
codecvtalways_noconv, encoding, in, length, max_length, out, unshift
monetarymoneypunctcurr_symbol, decimal_point, frac_digits, grouping, negative_sign, neg_format, positive_sign, pos_format, thousands_sep
money_getget
money_putput
numericnumpunctdecimal_point, falsename, grouping, thousands_sep, truename
num_getget
num_putput
timetime_getdate_order, get_date, get_monthname, get_time, get_weekday, get_year
time_putput
messagesmessagesclose, get, open

Locale objects can be constructed entirely from a name, taking all the characteristics of that named locale, or they can mix facet categories of different locales (see class locale for more info).

Thus, the core of the localization functionality in C++ is implemented in the different facets. Facets are objects. These objects are managed automatically by the locale engine, therefore facet objects are generally neither constructed nor copied locally in a program (in fact a program is prevented to do so by their protected destructors). The most general way of accessing a particular feature of a facet associated with a locale is with the function use_facet:

1
2
3
4
5
6
// using facet member directly:
myvar = use_facet < numpunct<char> > (mylocale).decimal_point();
// alias facet:
const numpunct<char>& myfacet = use_facet < numpunct<char> > (mylocale);
myvar = myfacet.decimal_point();


Every facet:
  • is derived from class locale::facet (or from any class derived from it, like another facet).
  • define a static member called id of type locale::id with a specific value.
A program may define its own facets to be added to a locale by fulfilling the above requirements.

All facet constructors include as second parameter (called refs in this reference) that defines whether the class deallocation is delegated to the locale engine, and hence it is automatically deleted when the last locale object where it is present is destroyed, or whether the program is in charge of its deallocation.

Those facet classes that are affected by the locale being of a different culture have a _byname equivalent, which is used by the localization engine to construct the appropriate facet objects when a locale object is constructed.

All the standard facets are designed with public members that call virtual protected members with the same name but preceded with "do_". The implementation of the operation itself lies in the virtual protected member function (so that derived class can easily redefine it), while the non-virtual public function may implement platform-specific functionality not related to the operation itself, but necessary to allow the feature to work properly on the system.

All library implementations provide at least all the facets by default for the char and wchar_t types as template parameters for the facet's character type.

Functions

Facet management:

Convenience interfaces (template versions of the cctype functions):

Classes


Standard facets:

Base classes for standard facets (defining member types):