Difference between revisions of "cpp/locale/numpunct"
(proper "french" numpunct) |
Andreas Krug (Talk | contribs) m (fmt) |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | {{cpp/title | numpunct}} | + | {{cpp/title|numpunct}} |
{{cpp/locale/numpunct/navbar}} | {{cpp/locale/numpunct/navbar}} | ||
{{dcl begin}} | {{dcl begin}} | ||
− | {{dcl header | locale}} | + | {{dcl header|locale}} |
− | {{dcl | 1= | + | {{dcl|1= |
template< class CharT > | template< class CharT > | ||
class numpunct; | class numpunct; | ||
Line 9: | Line 9: | ||
{{dcl end}} | {{dcl end}} | ||
− | The facet {{ | + | The facet {{tt|std::numpunct}} encapsulates numeric punctuation preferences. Stream I/O operations use {{tt|std::numpunct}} through {{lc|std::num_get}} and {{lc|std::num_put}} for parsing numeric input and formatting numeric output. |
− | The numbers that are supported by {{ | + | The numbers that are supported by {{tt|std::numpunct}} have the format described below. Here {{tt|digit}} represents the radix set specified by the {{tt|fmtflags}} argument value, {{tt|thousands-sep}} and {{tt|decimal-point}} are the results of {{lc|thousands_sep()}} and {{lc|decimal_point()}} functions respectively. The format of integer values is as follows: |
{{source|lang=text|1= | {{source|lang=text|1= | ||
Line 32: | Line 32: | ||
{{inheritance diagram/std-numpunct}} | {{inheritance diagram/std-numpunct}} | ||
− | + | ===Specializations=== | |
+ | The standard library is guaranteed to provide the following specializations (they are {{rlp|locale|required to be implemented by any locale object}}): | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc header | locale }} | + | {{dsc header|locale}} |
− | {{dsc | {{c|std::numpunct<char>}} | provides equivalents of the "C" locale preferences }} | + | {{dsc|{{c/core|std::numpunct<char>}}|provides equivalents of the "C" locale preferences}} |
− | {{dsc | {{c|std::numpunct<wchar_t>}} | provides wide character equivalents of the "C" locale preferences }} | + | {{dsc|{{c/core|std::numpunct<wchar_t>}}|provides wide character equivalents of the "C" locale preferences}} |
{{dsc end}} | {{dsc end}} | ||
− | |||
===Member types=== | ===Member types=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc hitem | Member type | Definition}} | + | {{dsc hitem|Member type|Definition}} |
− | {{dsc | {{tt|char_type}} | {{tt| | + | {{dsc|{{tt|char_type}}|{{tt|CharT}}}} |
− | {{dsc | {{tt|string_type}} | {{c|std::basic_string< | + | {{dsc|{{tt|string_type}}|{{c/core|std::basic_string<CharT>}}}} |
{{dsc end}} | {{dsc end}} | ||
===Member functions=== | ===Member functions=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/locale/numpunct/dsc numpunct}} | + | {{dsc inc|cpp/locale/numpunct/dsc numpunct}} |
− | {{dsc inc | cpp/locale/numpunct/dsc ~numpunct}} | + | {{dsc inc|cpp/locale/numpunct/dsc ~numpunct}} |
− | {{dsc h2 | | + | {{dsc h2|}} |
− | {{dsc inc | cpp/locale/numpunct/dsc decimal_point}} | + | {{dsc inc|cpp/locale/numpunct/dsc decimal_point}} |
− | {{dsc inc | cpp/locale/numpunct/dsc thousands_sep}} | + | {{dsc inc|cpp/locale/numpunct/dsc thousands_sep}} |
− | {{dsc inc | cpp/locale/numpunct/dsc grouping}} | + | {{dsc inc|cpp/locale/numpunct/dsc grouping}} |
− | {{dsc inc | cpp/locale/numpunct/dsc truefalsename}} | + | {{dsc inc|cpp/locale/numpunct/dsc truefalsename}} |
{{dsc end}} | {{dsc end}} | ||
===Protected member functions=== | ===Protected member functions=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/locale/numpunct/dsc do_decimal_point}} | + | {{dsc inc|cpp/locale/numpunct/dsc do_decimal_point}} |
− | {{dsc inc | cpp/locale/numpunct/dsc do_thousands_sep}} | + | {{dsc inc|cpp/locale/numpunct/dsc do_thousands_sep}} |
− | {{dsc inc | cpp/locale/numpunct/dsc do_grouping}} | + | {{dsc inc|cpp/locale/numpunct/dsc do_grouping}} |
− | {{dsc inc | cpp/locale/numpunct/dsc do_truefalsename}} | + | {{dsc inc|cpp/locale/numpunct/dsc do_truefalsename}} |
{{dsc end}} | {{dsc end}} | ||
===Member objects=== | ===Member objects=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc mem obj | nolink=true | {{dsc small|static std::locale::id}} id | ''id'' of the locale }} | + | {{dsc mem obj|nolink=true|{{dsc small|static std::locale::id}} id|''id'' of the locale}} |
{{dsc end}} | {{dsc end}} | ||
===Example=== | ===Example=== | ||
− | |||
{{example | {{example | ||
− | + | |The following example changes the string representations of {{c|true}} and {{c|false}}: | |
− | + | |code= | |
#include <iostream> | #include <iostream> | ||
#include <locale> | #include <locale> | ||
− | struct french_bool : std::numpunct<char> { | + | struct french_bool : std::numpunct<char> |
− | string_type do_truename() const { return "vrai"; } | + | { |
− | string_type do_falsename() const { return "faux"; } | + | string_type do_truename() const override { return "vrai"; } |
+ | string_type do_falsename() const override { return "faux"; } | ||
}; | }; | ||
Line 92: | Line 92: | ||
<< std::boolalpha << true << ", " << false << '\n'; | << std::boolalpha << true << ", " << false << '\n'; | ||
} | } | ||
− | + | |output= | |
default locale: true, false | default locale: true, false | ||
locale with modified numpunct: vrai, faux | locale with modified numpunct: vrai, faux | ||
}} | }} | ||
+ | |||
+ | ===Defect reports=== | ||
+ | {{dr list begin}} | ||
+ | {{dr list item|wg=lwg|dr=338|std=C++98|before=the {{tt|sign}} token allowed an optional whitespace following {{tt|+}} or {{tt|-}}|after=removed the whitespace}} | ||
+ | {{dr list end}} | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc tclass | cpp/locale/numpunct_byname | creates a numpunct facet for the named locale }} | + | {{dsc tclass|cpp/locale/numpunct_byname|creates a numpunct facet for the named locale}} |
{{dsc end}} | {{dsc end}} | ||
− | + | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 02:53, 13 December 2023
Defined in header <locale>
|
||
template< class CharT > class numpunct; |
||
The facet std::numpunct
encapsulates numeric punctuation preferences. Stream I/O operations use std::numpunct
through std::num_get and std::num_put for parsing numeric input and formatting numeric output.
The numbers that are supported by std::numpunct
have the format described below. Here digit
represents the radix set specified by the fmtflags
argument value, thousands-sep
and decimal-point
are the results of thousands_sep() and decimal_point() functions respectively. The format of integer values is as follows:
integer ::= [sign] units sign ::= plusminus plusminus ::= '+' | '-' units ::= digits [thousands-sep units] digits ::= digit [digits]
The number of digits between the thousand-sep
s (maximum size of digits
) is specified by the result of grouping().
The format of floating-point values is as follows:
floatval ::= [sign] units [decimal-point [digits]] [e [sign] digits] | [sign] decimal-point digits [e [sign] digits] e ::= 'e' | 'E'
Inheritance diagram
Contents |
[edit] Specializations
The standard library is guaranteed to provide the following specializations (they are required to be implemented by any locale object):
Defined in header
<locale> | |
std::numpunct<char> | provides equivalents of the "C" locale preferences |
std::numpunct<wchar_t> | provides wide character equivalents of the "C" locale preferences |
[edit] Member types
Member type | Definition |
char_type
|
CharT
|
string_type
|
std::basic_string<CharT> |
[edit] Member functions
constructs a new numpunct facet (public member function) | |
destructs a numpunct facet (protected member function) | |
| |
invokes do_decimal_point (public member function) | |
invokes do_thousands_sep (public member function) | |
invokes do_grouping (public member function) | |
invokes do_truename or do_falsename (public member function) |
[edit] Protected member functions
[virtual] |
provides the character to use as decimal point (virtual protected member function) |
[virtual] |
provides the character to use as thousands separator (virtual protected member function) |
[virtual] |
provides the numbers of digits between each pair of thousands separators (virtual protected member function) |
[virtual] |
provides the string to use as the name of the boolean true and false (virtual protected member function) |
[edit] Member objects
static std::locale::id id |
id of the locale (public member object) |
[edit] Example
The following example changes the string representations of true and false:
#include <iostream> #include <locale> struct french_bool : std::numpunct<char> { string_type do_truename() const override { return "vrai"; } string_type do_falsename() const override { return "faux"; } }; int main() { std::cout << "default locale: " << std::boolalpha << true << ", " << false << '\n'; std::cout.imbue(std::locale(std::cout.getloc(), new french_bool)); std::cout << "locale with modified numpunct: " << std::boolalpha << true << ", " << false << '\n'; }
Output:
default locale: true, false locale with modified numpunct: vrai, faux
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 338 | C++98 | the sign token allowed an optional whitespace following + or -
|
removed the whitespace |
[edit] See also
creates a numpunct facet for the named locale (class template) |