[signal] void QComboBox::currentTextChanged(const QString &text)
This signal is sent whenever currentText changes. The new value is passed as text.
This function was introduced in Qt 5.0.
Note: Notifier signal for property currentText.
属性currentText的通知信号
------
情景:
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :QMainWindow(parent),ui(new Ui::MainWindow)
{ui->setupUi(this);QStringList strList;strList << "1" << "2" <<"3";ui->comboBox->addItems(strList);
}void MainWindow::on_comboBox_currentTextChanged(const QString &text)
{qDebug() << text;
}
思考:槽函数on_comboBox_currentTextChanged是否会被调用呢?
是,输出:
"1"
分析:
原本comboBox的currentText是"",执行完
ui->comboBox->addItems(strList);
后 ,currentText变为"1",触发currentTextChanged信号。
可以通过打印信息进行验证:
我不希望此情景下触发该槽函数,所以我选择在addItems后再使用connect连接信号槽。
------
当业务逻辑较多时,一些错误会变得比较难以排查,还是需要打好基础。加油!