我试图将数据传递到名为“ dictionary”的哈希中,我想我将使用QMutableHashIterator遍历哈希并向其中添加值,但是,我一直遇到此错误,但不知道如何解决。我看过其他有类似错误的问题,但没有一个对我有帮助。所以我想我会问,有人可以帮我解决这个错误:
mainwindow.cpp:7: error: C2512: 'QMutableHashIterator<QString,QString>' : no appropriate default constructor available
这是我的代码:
mainwindow.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;
};
mainwindow.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);
}
}
提前致谢!
最佳答案
您必须使用要遍历的i
初始化QHash
。请参见QMutableHashIterator documentation。
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
i(dictionary) // here
{
// ...
}
或者简单地说,如果您的解决方案的逻辑允许,则在每次要将迭代器用作成员变量时都创建迭代器。
关于c++ - QMutableHashIterator-没有适当的默认构造函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42770691/