std::money_get

< cpp‎ | locale
定义于头文件 <locale>
template<

    class CharT,
    class InputIt = std::istreambuf_iterator<CharT>

> class money_get;

类模板 std::money_get 封装从字符流剖析货币值的规则。标准 I/O 操纵符 std::get_money 使用 I/O 流的 locale 的 std::money_get 平面。

cpp/locale/locale/facetstd-money get-inheritance.svg

继承图

类型要求

-
InputIt 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。

特化

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

定义于头文件 <locale>
std::money_get<char> 分析货币值的窄字符串表示
std::money_get<wchar_t> 分析货币值的宽字符串表示
std::money_get<char, InputIt> 用定制输入迭代器分析货币值的窄字符串表示
std::money_get<wchar_t, InputIt> 用定制输入迭代器分析货币值的宽字符串表示

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

成员类型

 
成员类型 定义
char_type CharT
string_type std::basic_string<CharT>
iter_type InputIt

成员函数

构造新的 money_get 平面
(公开成员函数)
销毁 money_get 平面
(受保护成员函数)
调用 do_get
(公开成员函数)

受保护成员函数

[虚]
分析来自输入流的货币值
(虚受保护成员函数)

成员对象

static std::locale::id id
locale 的 id
(公开成员对象)

示例

#include <iostream>
#include <sstream>
#include <locale>
#include <iomanip>
#include <iterator>
int main()
{
    std::string str = "$1.11 $2.22 $3.33";
    std::cout << std::fixed << std::setprecision(2);
 
    std::cout << '"' << str << "\" parsed with the I/O manipulator: ";
    std::istringstream s1(str);
    s1.imbue(std::locale("en_US.UTF-8"));
    long double val;
    while(s1 >> std::get_money(val))
        std::cout << val/100 << ' ';
    std::cout << '\n';
 
    str = "USD  1,234.56";
    std::cout << '"' << str << "\" parsed with the facet directly: ";
    std::istringstream s2(str);
    s2.imbue(std::locale("en_US.UTF-8"));
    auto& f = std::use_facet<std::money_get<char>>(s2.getloc());
    std::ios_base::iostate err;
    std::istreambuf_iterator<char> beg(s2), end;
    f.get(beg, end, true, s2, err, val);
    std::cout << val/100 << '\n';
}

输出:

"$1.11 $2.22 $3.33" parsed with the I/O manipulator: 1.11 2.22 3.33
"USD  1,234.56" parsed with the facet directly: 1234.56

参阅

定义 std::money_getstd::money_put 所用的货币格式解析器的参数
(类模板)
格式化货币值为字符序列以输出
(类模板)
(C++11)
剖析货币值
(函数模板)