返回非模板类中的嵌套模板成员

时间:2015-01-11 13:20:00

标签: c++ class templates member

我想创建一个具有任何类型数据成员的事件类,并使其成为非模板类​​。 但它可以设置内容,给出模板类型的内容。 我有使用事件类内容的处理函数。

NewEvent.h文件

class NewEvent {
public:
  NewEvent(const int64_t& value = 0) : value_(value) {}

  int64_t value() const { return value_; }
  void set_value(const int64_t& value) { value_ = value; }

  class ElementBase {
  public:
    virtual ~ElementBase() {}
    template <typename ContentT> ContentT& content() const;
    template <typename ContentT> void set_content(const ContentT&);
  };

  template <typename ContentT, typename Allocator = std::allocator<ContentT>>
  class Element : public ElementBase {
  public:
    Element(const Allocator& alloc = Allocator()) : alloc_(alloc) {}

    typedef std::allocator_traits<Allocator> AllocatorTraits;

    ContentT& content() const {
      return content_;
    }
    void set_content(const ContentT& content) {
      AllocatorTraits::construct(alloc_, &content_, content);
    }

  protected:
    ContentT content_;
    Allocator alloc_;
  };

  template <typename ContentT>
  void set_content(ContentT& content) {
    ElementBase* element = new Element<ContentT>();
    element->set_content(content);
    content_.reset(element);
  }

  template <typename ContentT>
  ContentT& content() const {
    return content_->content<ContentT>();
  }

private:
  int64_t value_;

  std::unique_ptr<ElementBase> content_;
};

template <typename ContentT>
ContentT& NewEvent::ElementBase::content() const {
  return dynamic_cast<NewEvent::Element<ContentT>&>(*this).content();
}

template <typename ContentT>
void NewEvent::ElementBase::set_content(const ContentT& content) {
  dynamic_cast<NewEvent::Element<ContentT>&>(*this).set_content(content);
}

Main.cpp的

struct Data {
    int returns;
};
void print(Data data) {
}
int main() {
    struct Data data;
    // ...
    NewEvent new_event;
    new_event.set_content<Data>(data);

    print(new_event.content());
    return 0;
}

在我的代码中,set_content函数运行良好。 但我不知道如何接收内容()并根据内容类型进行呼叫。 NewEvent类中的content()函数有编译错误。

错误C2783:'ContentT&amp; NewEvent :: ElementBase :: content(void)const':无法推断'ContentT'的模板参数

如何解决这种演绎类型问题,还是有其他方法可以实现这样?

0 个答案:

没有答案