Boost ptree 数字数组
Boost ptree array of numbers
我使用以下代码创建一个数字数组。
在运行下面的代码之后,我得到以下结果:
{
"": "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;
}
PTree 没有这样的功能。
一切都是序列化格式的文本。即使选择的后端格式可以支持(有限的)类型数据。
文档 proof:
我保持 re-stating:
Boost does not have an XML library.
Boost does not have a JSON library.
Boost has a Property Tree library. It deals with Property Trees. Not JSON, XML or whatever else.
我使用以下代码创建一个数字数组。
在运行下面的代码之后,我得到以下结果:
{
"": "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;
}
PTree 没有这样的功能。
一切都是序列化格式的文本。即使选择的后端格式可以支持(有限的)类型数据。
文档 proof:
我保持 re-stating:
Boost does not have an XML library.
Boost does not have a JSON library.
Boost has a Property Tree library. It deals with Property Trees. Not JSON, XML or whatever else.