Json 在 C++ 中:将数字解析为字符串以避免浮点数不准确

Json in C++: Parse a number as a string to avoid floating-point inaccuracy

我正在处理加密货币 RPC 并接收 json 数据如下:

{
  ...
  "amount": 1.34000000,
  "confirmations": 230016,
  "spendable": true,
  "solvable": true
  ...
}

使用 Jsoncpp library or json11 将数字解析为 double。发生这种情况时,由于双精度问题,结果为:1.3400000000000001。一般来说,这对金融交易来说是灾难性的,是不可接受的。

我已经有了一个定点库,它可以接受一个有效的字符串并在内部将其视为一个整数。有没有办法让 Jsoncpp(或任何其他 json 库)将选定的数字 json 值作为字符串,以便我可以以固定精度正确地处理它们?

json库里好像没有解决办法,只好自己修改数字,用引号括起来。我将此功能应用于响应。

[](std::string& jsonStr) {
        // matches "amount" field in json
        static std::regex reg(R"((\s*\"amount\"\s*:)\s*(\d*\.{0,1}\d{0,8})\s*)");
        jsonStr = std::regex_replace(jsonStr, reg, "\"\"");
    };

现在可以正常使用了。

我喜欢ThorsSerializer。免责声明是我写的。

它支持你正在寻找的东西。
您可以告诉解析器对 class 使用标准 input/output 运算符(然后您可以自己定义)。

示例:

#include "ThorSerialize/JsonThor.h"
#include "ThorSerialize/SerUtil.h"
#include <sstream>
#include <iostream>
#include <string>
#include <map>

struct FixedPoint
{
    int     integerPart;
    int     floatPart;
    friend std::istream& operator>>(std::istream& stream, FixedPoint& data)
    {
        // This code assumes <number>.<number>
        // Change to suite your needs.
        char c;
        stream >> data.integerPart >> c >> data.floatPart;
        if (c != '.')
        {
            stream.setstate(std::ios::failbit);
        }

        return stream;
    }
};
// This declaration tells the serializer to use operator>> for reading
// and operator<< for writing this value.
// Note: The value must still conform to standard Json type
//       true/false/null/integer/real/quoted string
ThorsAnvil_MakeTraitCustom(FixedPoint);

struct BitCoin
{
    FixedPoint  amount;
    int         confirmations;
    bool        spendable;
    bool        solvable;
};
// This declaration tells the serializer to use the standard
// built in operators for a struct and serialize the listed members.
// There are built in operations for all built in types and std::Types
ThorsAnvil_MakeTrait(BitCoin, amount, confirmations, spendable, solvable);

用法示例:

int main()
{
    using ThorsAnvil::Serialize::jsonImport;
    using ThorsAnvil::Serialize::jsonExport;

    std::stringstream file(R"(
        {
            "amount": 1.34000000,
            "confirmations": 230016,
            "spendable": true,
            "solvable": true
        }
    )");

    BitCoin     coin;
    file >> jsonImport(coin);

    std::cout << coin.amount.integerPart << " . " << coin.amount.floatPart << "\n";
}

构建:

> g++ -std=c++1z 51087868.cpp -lThorSerialize17

原生jsoncpp解决方案是RTFM!!! (例如,此处:https://open-source-parsers.github.io/jsoncpp-docs/doxygen/class_json_1_1_stream_writer_builder.html

Json::StreamWriterBuilder builder;
builder["commentStyle"] = "None";
builder["indentation"] = "   ";
builder["precision"] = 15;

这将设置您的编写器浮点精度以避免在双精度表示中打印小的截断错误。例如,

而不是 json 字段

"amount": 1.3400000000000001,

您现在将获得

"amount": 1.340000000000000,

随心所欲。