QT connect函数格式
时间: 2023-12-31 07:03:42 浏览: 75
Qt中connect函数不能传递参数的两种解决方法 - aRooooooba的博客 - CSDN博客1
QT中connect函数的格式如下:
```c++
connect(sender, SIGNAL(signal()), receiver, SLOT(slot()));
```
其中,sender表示信号的发出者,SIGNAL(signal())表示发出的信号,receiver表示信号的接收者,SLOT(slot())表示接收信号的槽函数。
例如,连接一个按钮的clicked()信号和一个窗口的close()槽函数:
```c++
connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(close()));
```
这里,ui->pushButton是按钮的指针,this表示窗口的指针,SIGNAL(clicked())表示按钮的clicked()信号,SLOT(close())表示窗口的close()槽函数。这样,当按钮被点击时,窗口就会关闭。
阅读全文