c++11 标准模板(STL)本地化库 - 平面类别(std::time_put) - 格式化数值为字符序列以输出

本文主要是介绍c++11 标准模板(STL)本地化库 - 平面类别(std::time_put) - 格式化数值为字符序列以输出,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本地化库

本地环境设施包含字符分类和字符串校对、数值、货币及日期/时间格式化和分析,以及消息取得的国际化支持。本地环境设置控制流 I/O 、正则表达式库和 C++ 标准库的其他组件的行为。

平面类别

格式化数值为字符序列以输出

std::time_put
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* 类型和所有能隐式转换到它们的类型(例如 int 或 float )。标准格式化输出运算符(如 cout << n; )用 I/O 流的 locale 的 std::num_put 平面生成数字的文本表示。

继承图

类型要求

- OutputIt 必须满足遗留输出迭代器 (LegacyOutputIterator) 的要求。

特化

标准库提供二个孤立(独立于本地环境)的全特化和二个部分特化:

定义于头文件 <locale>

std::num_put<char>创建数的窄字符串表示
std::num_put<wchar_t>创建数的宽字符串表示
std::num_put<char, OutputIt>用定制输出迭代器创建数的窄字符串表示
std::num_put<wchar_t, OutputIt>用定制输出迭代器创建数的宽字符串表示

另外, C++ 程序中构造的每个 locale 对象都实装这些特化的其自身(本地环境限定)版本。

成员类型

成员类型定义
char_typeCharT
iter_typeOutputIt

成员函数

(构造函数)

构造新的 num_put 平面
(公开成员函数)

(析构函数)

销毁 num_put 平面
(受保护成员函数)

put

调用 do_put
(公开成员函数)

受保护成员函数

do_put

[虚]

格式化数字并写入到输出流
(虚受保护成员函数)

成员对象

static std::locale::id id

locale 的 id
(公开成员对象)

构造新的 num_put 平面

std::num_put<CharT,OutputIt>::num_put

explicit num_put( std::size_t refs = 0 );

创建 std::num_put 平面并转发引用计数 refs 到基类构造函数 locale::facet::facet() 。

参数

refs-开始的引用计数

销毁 num_put 平面

std::num_put<CharT,OutputIt>::~num_put

protected: ~num_put();

析构 std::num_put 平面。此析构函数为受保护且为虚(由于基类析构函数为虚)。 std::num_put 类型对象,同大多数平面,只能在最后一个实装此平面的 std::locale 离开作用域时,或若用户定义导出自 std::num_put 并实现公开构造函数,才会被销毁。

调用示例

 

#include <iostream>
#include <locale>struct Destructible_num_put : public std::num_put<wchar_t>
{Destructible_num_put(std::size_t refs = 0) : num_put(refs) {}// 注意:隐式析构函数为公开
};int main()
{Destructible_num_put dc;// std::num_put<wchar_t> c;  // 编译错误:受保护析构函数return 0;
}

调用 do_put & 格式化数字并写入到输出流

std::num_put<CharT,OutputIt>::put, std::num_put<CharT,OutputIt>::do_put

public:
iter_type put( iter_type out, std::ios_base& str, char_type fill, bool v ) const;

(1)

iter_type put( iter_type out, std::ios_base& str, char_type fill, long v ) const;

iter_type put( iter_type out, std::ios_base& str, char_type fill, long long v ) const;

iter_type put( iter_type out, std::ios_base& str, char_type fill, unsigned long v ) const;

iter_type put( iter_type out, std::ios_base& str, char_type fill, unsigned long long v ) const;

iter_type put( iter_type out, std::ios_base& str, char_type fill, double v ) const;

iter_type put( iter_type out, std::ios_base& str, char_type fill, long double v ) const;

iter_type put( iter_type out, std::ios_base& str, char_type fill, const void* v ) const;

protected:
virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, bool v ) const;

(2)

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, long v ) const;

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, long long v ) const;

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, unsigned long ) const;

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, unsigned long long ) const;

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, double v ) const;

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, long double v ) const;

virtual iter_type do_put( iter_type out, std::ios_base& str, char_type fill, const void* v ) const;

1) 公开成员函数,调用最终导出类的受保护虚成员函数 do_put

2) 写字符到输出序列 out ,这些字符表示 v 的值,按格式化标志 str.flags() 和流 str 中感染的 locale 的 std::numpunct 和 std::ctype 平面所要求者格式化。此函数为所有有格式输出流运算符,如 std::cout << n; 所调用。

转换以四个阶段出现

阶段 1 :转换指定符选择
  • 获得 I/O 格式标志,如同以

fmtflags basefield = (str.flags() & std::ios_base::basefield);

fmtflags uppercase = (str.flags() & std::ios_base::uppercase);

fmtflags floatfield = (str.flags() & std::ios_base::floatfield);

fmtflags showpos = (str.flags() & std::ios_base::showpos);

fmtflags showbase = (str.flags() & std::ios_base::showbase);

fmtflags showpoint = (str.flags() & std::ios_base::showpoint);

  • v 的类型为 bool
    • 若 boolalpha == 0 ,则转换 v 为 int 类型并进行整数输出。
    • 若 boolalpha != 0 ,则若 v == true 则获得std::use_facet<std::numpunct<charT>>(str.getloc()).truename() ,或若 v == false 则获得 std::use_facet<std::numpunct<charT>>(str.getloc()).falsename() ,并以 *out++ = c 输出该字符串的每个相继字符 cout 。此情况下不进行进一步的操作,函数返回 out
  • v 的类型为整数类型,则选择下列首个可应用选项:

若 basefield == oct ,则将使用转换指定符 %o

若 basefield == hex && !uppercase ,则将使用转换指定符 %x

若 basefield == hex ,则将使用转换指定符 %X

v 的类型有符号,则将使用转换指定符 %d

v 的类型无符号,则将使用转换指定符 %u

  • 对于整数类型,若需要则添加长度修饰符到转换指定:对于 long 和 unsigned long 为 l ,对于 long long 和 unsigned long long 为 ll 。
  • v 为浮点类型,则选择首个可应用选项:

若 floatfield == std::ios_base::fixed ,则将使用转换指定符 %f

若 floatfield == std::ios_base::scientific && !uppercase ,则将使用转换指定符 %e

若 floatfield == std::ios_base::scientific ,则将使用转换指定符 %E

若 floatfield == (std::ios_base::fixed | std::ios_base::scientific) && !uppercase ,则将使用转换指定符 %a

若 floatfield == (std::ios_base::fixed | std::ios_base::scientific) ,则将使用转换指定符 %A

(C++11 起)

若 !uppercase ,则将使用转换指定符 %g

否则,将使用转换指定符 %G

  • v 的类型为 long double ,则添加长度修饰符 L 到转换指定符。
  • 另外若 floatfield != (ios_base::fixed | ios_base::scientific) 则 (C++11 起)添加设为 str.precision() 的精度指定符
  • 对于整数和浮点类型,若设置了 showpos ,则前附修饰符 + 。
  • 对于整数类型,若设置了 showbase ,则前附修饰符 # 。
  • 对于浮点类型,若设置了 showpoint ,则前附修饰符 # 。
  • v 的类型为 void* ,则将使用格式指定符 %p 。
  • 如同以在 "C" 本地环境中调用 std::printf(spec, v) 创建窄字符串,其中 spec 是所选的格式指定符。
阶段 2 :本地环境限定转换
  • 调用 std::use_facet<std::ctype<CharT>>(str.getloc()).widen(c) ,将阶段 1 中获得的每个异于小数点 '.' 的字符 c 转换为 CharT
  • 对于算术类型,按照 std::use_facet<std::numpunct<CharT>>(str.getloc()).grouping() 所提供的分组规则,插入从 std::use_facet<std::numpunct<CharT>>(str.getloc()).thousands_sep() 获得的千分隔字符到序列中。
  • 以 std::use_facet<std::numpunct<CharT>>(str.getloc()).decimal_point() 替换小数点字符( '.' )。
阶段 3 :填充
  • 如同以 std::fmtflags adjustfield = (flags & (std::ios_base::adjustfield)) 获得调整标志,并以如下方式检验它以鉴别填充位置

若 adjustfield == std::ios_base::left ,则将在后方填充

若 adjustfield == std::ios_base::right ,则将在前方填充

若 adjustfield == std::ios_base::internal 且表示中出现符号字符,则将在符号后填充

若 adjustfield == std::ios_base::internal 而阶段 1 表示以 0x 或 0X 开始,则将在 x 或 X 后填充

否则,将在前方填充

  • 若 str.width() 非零(例如刚使用了 std::setw )且阶段 2 后的 CharT 数小于 str.width() ,则插入 fill 字符的副本于填充所指示的位置,令序列长度达到 str.width() 。

任何情况下,都调用 str.width(0) 以取消 std::setw 的效果。

阶段 4 :输出

如同用 *out++ = c 输出来自阶段 3 的 CharT 序列的每个相继字符 c

参数

out-指向首个要写入字符的迭代器
str-取得格式化信息来源的流
fill-需要填充结果到域宽时使用的填充字符
v-转换为字符串并输出的值

返回值

out

注意

转换指定 #o (例如产生自 std::showbase 和 std::oct 的组合)不计为填充字符。

格式化浮点值为 hexfloat 时(即 floatfield == (std::ios_base::fixed | std::ios_base::scientific) 时),不使用流的精度;而是始终以足以准确表示值的精度打印该数。(C++11 起)

调用示例 windows

 

#include <iostream>
#include <sstream>
#include <locale>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <iterator>
#include <Windows.h>std::vector<std::wstring> locals;BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam)
{locals.push_back(pStr);return TRUE;
}std::string stows(const std::wstring& ws)
{std::string curLocale = setlocale(LC_ALL, NULL); // curLocale = "C";setlocale(LC_ALL, "chs");const wchar_t* _Source = ws.c_str();size_t _Dsize = 2 * ws.size() + 1;char *_Dest = new char[_Dsize];memset(_Dest, 0, _Dsize);wcstombs(_Dest, _Source, _Dsize);std::string result = _Dest;delete[]_Dest;setlocale(LC_ALL, curLocale.c_str());return result;
}// 此定制 num_put 平面输出所有整数类型的平方(除了 long long )
struct squaring_num_put : std::num_put<char>
{iter_type do_put(iter_type s, std::ios_base& f,char_type fill, long v) const{return std::num_put<char>::do_put(s, f, fill, v * v);}iter_type do_put(iter_type s, std::ios_base& f,char_type fill, unsigned long v) const{return std::num_put<char>::do_put(s, f, fill, v * v);}
};int main()
{EnumSystemLocalesEx(MyFuncLocaleEx, LOCALE_ALTERNATE_SORTS, NULL, NULL);for (std::vector<std::wstring>::const_iterator str = locals.begin();str != locals.end(); ++str){std::locale::global(std::locale(stows(*str)));std::cout.imbue(std::locale(stows(*str)));std::cout << "The locale " << std::cout.getloc().name() << ' ';auto& facet = std::use_facet<std::num_put<char>>(std::cout.getloc());facet.put(std::cout, std::cout, '0', 2.71);std::cout << "          ";std::cout.imbue(std::locale(std::cout.getloc(), new squaring_num_put));std::cout << 6 << "     " << -12 << std::endl;}return 0;
}

输出

The locale de-DE_phoneb 2,71          36     144
The locale es-ES_tradnl 2,71          36     144
The locale hu-HU_technl 2,71          36     144
The locale ja-JP_radstr 2.71          36     144
The locale ka-GE_modern 2,71          36     144
The locale x-IV_mathan 2.71          36     144
The locale zh-CN_phoneb 2.71          36     144
The locale zh-CN_stroke 2.71          36     144
The locale zh-HK_radstr 2.71          36     144
The locale zh-MO_radstr 2.71          36     144
The locale zh-MO_stroke 2.71          36     144
The locale zh-SG_phoneb 2.71          36     144
The locale zh-SG_stroke 2.71          36     144
The locale zh-TW_pronun 2.71          36     144
The locale zh-TW_radstr 2.71          36     144

这篇关于c++11 标准模板(STL)本地化库 - 平面类别(std::time_put) - 格式化数值为字符序列以输出的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/966981

相关文章

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

uva 10131 最长子序列

题意: 给大象的体重和智商,求体重按从大到小,智商从高到低的最长子序列,并输出路径。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vect

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <