在线文档教程
C++
本土化 | Localizations

std::num_put

STD::NUM[医]放

Defined in header
template< class CharT, class OutputIt = std::ostreambuf_iterator<CharT> > class num_put;

类std::num_put将用于格式化数字值的规则封装为字符串。具体来说,类型bool,,,long,,,unsigned long,,,long long,,,unsigned long long,,,double,,,long double,,,void*,以及所有类型中隐式可转换到这些%28的类型,例如int或float%29得到支持。标准格式输出运算符%28,如cout << n;%29使用std::num_putI/O流%27s区域设置的方面,以生成数字的文本表示形式。

二次

二次

继承图

类型要求

-输出必须符合输出器的要求。

*。

专门性

标准库提供了两个独立的%28区域独立的%29完全专门化和两个部分专门化:

在标头中定义<locale>

*。

STD::NUM[医]放<char>创建数字的窄字符串表示

STD::NUM[医]放置<wchar[医]T>创建数字的宽字符串表示

STD::NUM[医]PUT<char,OutputIt>使用自定义输出迭代器创建数字的窄字符串表示

STD::NUM[医]放置<wchar[医]T,OutputIt>使用自定义输出迭代器创建数字的宽字符串表示

此外,在C++程序中构造的每个locale对象都实现了自己的%28 locale特定于这些专门化的%29版本。

成员类型

Member typeDefinition
char_typeCharT
iter_typeOutputIt

成员函数

(constructor)constructs a new num_put facet (public member function)
(destructor)destructs a num_put facet (protected member function)
putinvokes do_put (public member function)

受保护成员函数

do_put virtualformats a number and writes to output stream (virtual protected member function)

成员对象

static std::locale::id idid of the locale (public member object)

二次

#include <iostream> #include <locale> #include <string> #include <iterator> int main() { double n = 1234567.89; std::cout.imbue(std::locale("de_DE") std::cout << "Direct conversion to string:\n" << std::to_string(n) << '\n' << "Output using a german locale:\n" << std::fixed << n << '\n' << "Output using an american locale:\n"; // use the facet directly std::cout.imbue(std::locale("en_US.UTF-8") auto& f = std::use_facet<std::num_put<char>>(std::cout.getloc() f.put(std::ostreambuf_iterator<char>(std::cout), std::cout, ' ', n std::cout << '\n'; }

二次

产出:

二次

Direct conversion to string: 1234567.890000 Output using a german locale: 1.234.567,890000 Output using an american locale: 1,234,567.890000

二次

另见

numpunctdefines numeric punctuation rules (class template)
num_getparses numeric values from an input character sequence (class template)
to_string (C++11)converts an integral or floating point value to string (function)
to_wstring (C++11)converts an integral or floating point value to wstring (function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/locale/num[医]放