获取comboBox里面的item使用的方法
使用currentIndex()或者currentText()
void Widget::calc()
{
int first = ui->firstLineEdit->text().toInt();
int second = ui->secondLineEdit->text().toInt();
int result;
switch(ui->comboBox->currentIndex())
{
case 0:
result = first + second;
ui->resultLineEdit->setText(QString::number(result));
break;
case 1:
result = first - second;
ui->resultLineEdit->setText(QString::number(result));
break;
case 2:
result = first * second;
ui->resultLineEdit->setText(QString::number(result));
break;
case 3:
if(second != 0)
{
result = first / second;
ui->resultLineEdit->setText(QString::number(result));
}
break;
default:break;
}
}
文章对您有帮助,开心可以打赏我,金额随意,欢迎来赏!
需要电子方面开发板/传感器/模块等硬件可以到我的淘宝店逛逛
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步