c – Boost property_tree – 使用简单的数组或容器

c – Boost property_tree – 使用简单的数组或容器,第1张

概述我正在使用boost property_tree加载一个ini文件.我的ini文件主要包含“简单”类型(即字符串,整数,双精度等),但我确实有一些表示数组的值. [Example]thestring = stringtheint = 10theintarray = 1,2,3,4,5thestringarray = cat, dog, bird 我无法弄清楚如何通过编程方式将theinta 我正在使用boost property_tree加载一个ini文件.我的ini文件主要包含“简单”类型(即字符串,整数,双精度等),但我确实有一些表示数组的值.

[Example]thestring = stringtheint = 10theintarray = 1,2,3,4,5thestringarray = cat,dog,bird

我无法弄清楚如何通过编程方式将theintarray和thestringarray加载到像vector或List这样的容器对象中.我注定要把它作为一个字符串读出并自己解析出来吗?

谢谢!

解决方法 是的,你注定要自己解析.但它相对容易:

template<typename T>std::vector<T> to_array(const std::string& s){  std::vector<T> result;  std::stringstream ss(s);  std::string item;  while(std::getline(ss,item,',')) result.push_back(boost::lexical_cast<T>(item));  return result;}

比可以使用的:

std::vector<std::string> foo =     to_array<std::string>(pt.get<std::string>("thestringarray"));std::vector<int> bar =    to_array<int>(pt.get<std::string>("theintarray"));
总结

以上是内存溢出为你收集整理的c – Boost property_tree – 使用简单的数组或容器全部内容,希望文章能够帮你解决c – Boost property_tree – 使用简单的数组或容器所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1213473.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存