C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – Boost property_tree – 使用简单的数组或容器大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用boost property_tree加载一个ini文件.我的ini文件主要包含“简单”类型(即字符串,整数,双精度等),但我确实有一些表示数组的值.

[Example]
theString = String
theint = 10
theintarray = 1,2,3,4,5
theStringarray = 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 – 使用简单的数组或容器所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。