标签: c++ boost parameters containers
答案 0 :(得分:8)
答案 1 :(得分:4)
答案 2 :(得分:2)
答案 3 :(得分:1)
您可以使用Boost.PropertyTree。
它读取和写入xml和ini文件。
它将参数存储为树,您可以使用点表示法来访问值:
std::string value = pt.get<std::string>("debug.filename");
您还可以使用以下方法插入新值:
pt.put("debug.filename", fileName);