0

我正在尝试将数据传递到名为“dictionary”的哈希中,我想我会使用 QMutableHashIterator 来遍历哈希并向其中添加值,但是,我不断收到此错误,但我不知道如何解决它。我看过其他有类似错误的问题,但没有一个真的对我有帮助。所以我想我会问,有人可以帮我解决这个错误:

mainwindow.cpp:7: error: C2512: 'QMutableHashIterator<QString,QString>' : no appropriate default constructor available

这是我的代码:

主窗口.h:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QMessageBox>

namespace Ui {
  class MainWindow;
}

class MainWindow : public QMainWindow
{
  Q_OBJECT

public:
  explicit MainWindow(QWidget *parent = 0);
  ~MainWindow();

private slots:
  void on_pushButton_clicked();

private:
  Ui::MainWindow *ui;
  QHash<QString, QString> dictionary;
  QMutableHashIterator<QString, QString> i;
};

主窗口.cpp:

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
  ui->setupUi(this);

  const QString content = "word";
  i = dictionary;
  while(i.hasNext())
  {
    i.next();
    i.setValue(content);
  }
}

MainWindow::~MainWindow()
{
  delete ui;
}

void MainWindow::on_pushButton_clicked()
{
  QString word = "dog";

  while(i.findNext(word))
  {
    QMessageBox::information(this,tr("Word Has Been found"),
                             word);
  }
}

提前致谢!

4

1 回答 1

1

i您必须使用QHash要遍历的初始化。请参阅QMutableHashIterator 文档

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
i(dictionary) // here
{
  // ...
}

或者简单地说,如果您的解决方案的逻辑允许,则在每次您想将迭代器用作成员变量时创建迭代器。

于 2017-03-13T22:55:10.537 回答