C ++递归类依赖关系

时间:2018-06-27 13:09:08

标签: c++ object nested variant

我正在尝试制作类似于std :: Map的内容。我有两个类,NameValue,它接受一个名称和一个Value。 Value类可以保存int和string类型的数据。我希望Value类也接受NameValue以便能够创建嵌套对象。目前,boost :: variant用于保存允许使用的数据类型。

NameValue.h

  #ifndef INC_NAME_VALUE_H_
    #define INC_NAME_VALUE_H_

    #include <boost/variant.hpp>
    #include <iostream>
    #include <string>
    #include "value.h"

    namespace config {

    using namespace std;
    class Value;  // forward declaration
    class NameValue {
     private:
      string name;
      Value* valuePtr;

     public:
      NameValue(){};
      NameValue(string name, Value& value)
          : name(name)
          , valuePtr(&value){};

      void Print() {
        cout << name << " : ";
        // valuePtr->Print();
      }

      void Set(Value* value) { valuePtr = value; }
    };
    }

    #endif /* INC_NAME_VALUE_H_ */

Value.h

    #ifndef INC_VALUE_H_
#define INC_VALUE_H_

#include <boost/variant.hpp>
#include <iostream>
#include <string>
#include "name_value.h"

namespace config {
using namespace std;

using variantDataType = boost::variant<int, string>;

class Value {
 private:
  variantDataType value;

 public:
  Value(){};
  Value(variantDataType const& value)
      : value(value){};
  void Print() { cout << value << endl; }
};
}
#endif /* INC_VALUE_H_ */

在Value.h中,我想将NameValue添加到这样的变量中:

boost::variant<int,string,NameValue> value;

main.cpp

Value i(42);
NameValue nv("meaning", i);
NameValue nv2("nested, NameValue("deep", "value"));//this is what I want

也许我在使用变体或使用依赖项的方式上走错了路。如果还有其他方法可以使它起作用,我将不胜感激这些建议。

0 个答案:

没有答案