QT信号槽传递参数技巧

信号槽如何传递参数(或带参数的信号槽)

利用Qt进行程序开发时,有时需要信号槽来完成参数传递。带参数的信号槽在使用时,有几点需要注意的地方,下面结合实例进行介绍。

第一点:当信号与槽函数的参数数量相同时,它们参数类型要完全一致。

信号:

[cpp]  view plain
  1. void iSignal(int b);  

槽:

[cpp]  view plain
  1. void MainWindow::iSlot(int b)  
  2. {  
  3.     QString qString;  
  4.     qDebug()<<qString.number(b);  
  5. }  

信号槽绑定:

[cpp]  view plain
  1. connect(this, SIGNAL(iSignal(int)), this, SLOT(iSlot(int)));  

发送信号:

[cpp]  view plain
  1. emit iSignal(5);  


结果:

可以看出,参数已经成功传递。


第二点:当信号的参数与槽函数的参数数量不同时,只能是信号的参数数量多于槽函数的参数数量,且前面相同数量的参数类型应一致,信号中多余的参数会被忽略。

信号:

[html]  view plain
  1. void iSignal(int a, float b);  

槽:

[html]  view plain
  1. void MainWindow::iSlot(int b)  
  2. {  
  3.     QString qString;  
  4.     qDebug()<<qString.number(b);  
  5. }  

信号槽:

[html]  view plain
  1. connect(this, SIGNAL(iSignal(int, float)), this, SLOT(iSlot(int)));  

发送信号:

[html]  view plain
  1. emit iSignal(5, 0.3);  

结果:



此外,在不进行参数传递时,信号槽绑定时也是要求信号的参数数量大于等于槽函数的参数数量。这种情况一般是一个带参数的信号去绑定一个无参数的槽函数。如下例所示。

信号:

[cpp]  view plain
  1. void iSignal(int a, float b);  
槽函数:

[cpp]  view plain
  1. void MainWindow::iSlot() //int b  
  2. {  
  3.     QString qString = "I am lyc_daniel.";  
  4.     qDebug()<<qString;  
  5. }  

信号槽:

[html]  view plain
  1. connect(this, SIGNAL(iSignal(int, float)), this, SLOT(iSlot()));  

发送信号:

[html]  view plain
  1. emit iSignal(5, 0.3);  

结果:


愿以上内容能给你带去帮助!



文档信息

  • 博       主: lyc_daniel


方法一:
connect(button1, SIGNAL(clicked()), this, SLOT(buttonClick()));
connect(button2, SIGNAL(clicked()), this, SLOT(buttonClick()));
button1.setObjectName("1");
button2.setObjectName("2");

void YourWidget::buttonClick()
{
    QPushButton *clickedButton = qobject_cast<QPushButton *>(sender());
    if(clickedButton != NULL)
    {
        if(clickedButton->objectName() == "1")
        {
//button1
        }
        if(clickedButton->objectName() == "2")
        {
//button2
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值