提升ptree数组

时间:2017-01-12 09:53:11

标签: c++ boost boost-propertytree ptree

我使用以下代码创建数字数组。

运行以下代码后,我会发现以下结果:

{
    "": "1.100000",
    "": "2.200000",
    "": "3.300000"
}

除了我想要的结果必须是数字数组而不是字符串之外,它是好的。由boost::property_tree::ptree(x)直接添加数字也会给我一个错误。如何生成输出json结果?

{
    "": 1.100000,
    "": 2.200000,
    "": 3.300000
}

代码:

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>

int main()
{
    boost::property_tree::ptree pt;
    std::vector<double> Vec={1.1,2.2,3.3};
    for(double x:Vec)
    {
        std::string x_string=std::to_string(x);
        pt.push_back(
            std::make_pair("", 
            boost::property_tree::ptree(x_string)) );

    }
    boost::property_tree::json_parser::write_json(std::cout, pt);
    std::cout<<std::endl;
    return 0;
}

1 个答案:

答案 0 :(得分:0)

PTree没有这样的功能。

所有内容都是序列化格式的文本。即使选择的后端格式可以支持(有限的)类型数据。

文档proof

enter image description here

我一直在说:

  

Boost 拥有XML库。

     

Boost 拥有JSON库。

     

Boost有一个属性树库。它涉及物业树。不是JSON,XML或其他任何东西。