1

QMultiMapusingを反復処理したい

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 を使用することさえ可能ですか? 定義 (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
};
4

1 に答える 1

2

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;

そしてそれは構築されます。

于 2011-09-18T13:34:36.993 に答える