C ++调用矢量迭代器上的模板化方法

时间:2016-07-05 08:44:39

标签: c++ c++11

我试图从矢量迭代器访问模板化方法但是我无法编译我的代码而且我遇到了一些错误。

这是我的代码示例(没有构造函数,析构函数以及所有属性和方法)。但是,此代码段会重现我得到的错误。

#include <vector>
#include <boost/any.hpp>

class Value: public boost::any {
public:
  Value () :
      boost::any() {
  }

  template<typename dataT>
  Value (const dataT& value) :
      boost::any(value) {
  }

  template<typename dataT>
  dataT as () const {
    return boost::any_cast<dataT>(*this);
  }
};

class Src {
public:
  inline const Value& operator[] (const int& index) const {
    return _values[index];
  }

  inline Value& operator[] (const int& index) {
    return _values[index];
  }

  template<typename dataT>
  dataT getValue (const int& index) const {
    return operator[](index).as<dataT>();
  }

private:
    std::vector<Value> _values;
};

template<typename SRC>
class A{
public:
  template<typename dataT>
  std::vector<dataT> getValues (const size_t& attr_index) const {
    std::vector<dataT> data;

    typename std::vector<dataT>::iterator src;
    for (src = _data.begin(); src != _data.end(); ++src) {
      data.push_back(src->getValue<dataT>(attr_index));
    }

    return data;
  }
private:
  std::vector<SRC> _data;
};

编译错误如下:

test.h: In member function ‘std::vector<dataT> A<SRC>::getValues(const size_t&) const’:
test.h:49:41: error: expected primary-expression before ‘>’ token
       data.push_back(src->getValue<dataT>(attr_index));

我不知道这里会发生什么。

你知道我做错了什么吗?

编辑:不完全是How to call a template member function?的副本。然而,这里给出的答案https://stackoverflow.com/a/613132/2351966非常有趣,我的问题也是Mattia F。正如所指出的那样,缺少template个关键字。

1 个答案:

答案 0 :(得分:1)

在第47行添加关键字template

data.push_back(src->template getValue<dataT>(attr_index));

否则可以将其解析为比较操作,如:

(src->getValue < dataT) > (attr_index)