Можно ли использовать QMultiMap::ConstIterator в собственном шаблонном классе?

Я хочу перебрать QMultiMap с помощью

QMultiMap<double, TSortable>::const_iterator it;`

но компилятор жалуется

error: expected ‘;’ before ‘it’

в результате чего

error: ‘it’ was not declared in this scope

для каждого использования. Я старался ConstIterator, const_iterator и даже медленнее Iterator без успеха. Можно ли использовать Q(Multi)Map с шаблоном класса? Почему я не могу объявить Iterator, когда определение (как void*) в порядке?

Я использую следующий код (включая охрану опущено):

#include <QtCore/QDebug>
#include <QtCore/QMap>
#include <QtCore/QMultiMap>
#include <limits>

/** TSortable has to implement minDistance() and maxDistance() */
template<class TSortable>
class PriorityQueue {
public:

  PriorityQueue(int limitTopCount)
      : limitTopCount_(limitTopCount), actMaxLimit_(std::numeric_limits<double>::max())
  {
  }

  virtual ~PriorityQueue(){}

private:
  void updateActMaxLimit(){
    if(maxMap_.count() < limitTopCount_){
      // if there are not enogh members, there is no upper limit for insert
      actMaxLimit_ = std::numeric_limits<double>::max();
      return;
    }
    // determine new max limit

    QMultiMap<double, TSortable>::const_iterator it;
    it = maxMap_.constBegin();
    int act = 0;
    while(act!=limitTopCount_){
      ++it;// forward to kMax
    }
    actMaxLimit_ = it.key();

  }

  const int limitTopCount_;
  double actMaxLimit_;
  QMultiMap<double, TSortable> maxMap_;// key=maxDistance
};

1 ответ

Решение

GCC выдает эту ошибку раньше той, которую вы цитировали:

error: need ‘typename’ before ‘QMultiMap<double, TSortable>::const_iterator’ because ‘QMultiMap<double, TSortable>’ is a dependent scope

который объясняет проблему. Добавить typename ключевое слово:

typename QMultiMap<double, TSortable>::const_iterator it;

и он будет строить.

Другие вопросы по тегам