qt中connect函数用法
时间: 2023-03-24 19:04:56 浏览: 180
QT_connect函数的用法
connect函数用于连接信号和槽,其语法为:connect(sender, signal, receiver, slot)。其中,sender为发送信号的对象,signal为信号名称,receiver为接收信号的对象,slot为槽函数名称。当sender对象发出signal信号时,receiver对象会自动调用slot槽函数进行处理。
阅读全文
QT_connect函数的用法