欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

JsonCpp中double的问题解决

时间:2022-08-22 09:23:38|栏目:C代码|点击:

json文件里的值

double类型的值

程序代码

new_item["Voltage"] = 8.622;
new_item["Current"] = 8.63456;
new_item["Energy"] = 8.234234;

程序运行结果

明显值发生了变化

Jsoncpp的json_write.cpp中

std::string valueToString(double value, bool useSpecialFloats, unsigned int precision) {
  // Allocate a buffer that is more than large enough to store the 16 digits of
  // precision requested below.
  char buffer[32];
  int len = -1;

  char formatString[6];
  sprintf(formatString, "%%.%dg", precision);

  // Print into the buffer. We need not request the alternative representation
  // that always has a decimal point because JSON doesn't distingish the
  // concepts of reals and integers.
  if (isfinite(value)) {
    len = snprintf(buffer, sizeof(buffer), formatString, value);
  } else {
    // IEEE standard states that NaN values will not compare to themselves
    if (value != value) {
      len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "NaN" : "null");
    } else if (value < 0) {
      len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "-Infinity" : "-1e+9999");
    } else {
      len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "Infinity" : "1e+9999");
    }
    // For those, we do not need to call fixNumLoc, but it is fast.
  }
  assert(len >= 0);
  fixNumericLocale(buffer, buffer + len);
  return buffer;
}

这里sprintf(formatString, “%%.%dg”, precision);的结果是“%.17g”。是输出17位的有效数字。不足的补足17位。

ps:JsonCpp的小数精度问题和插入输出顺序问题

直接说吧,这两个问题无法解决,如下:

官方不支持指定小数位数,double默认位宽为17位,如:"value" : 7.0999999999999996,
官方不支持按插入顺序输出,而是按照key的字母排序输出的,不管你什么顺序插入,下面的都是这样的顺序输出的:

"avg_abcdd              " : 1.1632640000000014,
"avg_pxczzczxczxd       " : 7.0999999999999996,
"avg_shczxcdize         " : 802000.0,
"deviccxz               " : "shebei25",
"sh323423fd             " : 1420,
"vcxzcasdasdadczco      " : 231

个人应急想法 

数字精度问题,可以考虑在C++中转为自己需求的精度,然后再当作字符串放到json中,至于之后的解析,读字符串再转数字即可;

顺序问题,两个想法:

1)不要用key,采用append的形式,也就是将每个条目放在一个容器中

Json::Value res; 
 
std::string = entry_str; 
 
entry_str.append("zhangsan,123"); 
entry_str.append("abc,2596"); 
....... 
 
res["entry"] = entry_str;

2)那就按名字命令咯,顺应规则,2333333

上一篇:C语言 栈与数组的实现详解

栏    目:C代码

下一篇:C++ 超详细深入分析单例模式

本文标题:JsonCpp中double的问题解决

本文地址:http://www.codeinn.net/misctech/211564.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有