[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 – 使用简单的数组或容器所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)