Yaml-cpp,旧 api 到新 api ,运算符 >>

Yaml-cpp, old api to new api , operator >>

我想将以下 Yaml-cpp 旧 api 格式的句子转换为新 api 格式。如何将 doc["Meta"]["type"] >> type 转换为新的 API,因为运算符 >> 在新 api。谢谢

尝试以下操作:

typedef std::string MyType; // I believe, that you're retrieving string
MyType x = doc["Meta"]["type"].as<MyType>();