c++项目配置文件选型yaml, xml, json

yaml

推荐程度 ★☆☆☆☆
github: https://github.com/jbeder/yaml-cpp
解析库yaml-cpp 才0.6.3版本, github上才2.1k stars
总结: yaml不错, 但是yaml-cpp坑多不好用, 遇到过一个死活找不到value的坑, debug了1天, 还是不行

xml

xml虽然笨重, 但是作为配置文件的老大哥就是这么稳

1. tinyxml

推荐程度 ★★☆☆☆
2012年后不维护了, 慎用
官方不提供so库, 直接cp 源文件 到项目里使用
参考 https://www.jianshu.com/p/4227c400875d

2. tinyxml2

推荐程度 ★★★☆☆
github: https://github.com/leethomason/tinyxml2
总结: 3.2k stars, 已经8.0.0

json

推荐程度 ★★★★☆
github: https://github.com/open-source-parsers/jsoncpp
总结: 4.8k stars, 已经1.9.3, 用它!用它!用它!

你可能感兴趣的:(c++开发之路)