eg:QWidget的有个虚函数,KeyPressEvent,当它的子类获得焦点的时候,如果有任何按键按下,就会触发这个虚函数。1、在mainwindow.h中声明此虚函数protected:void KeyPressEvent(QKeyEvent *event);2、在mainwindow.cpp中重定义此虚函数void MainWindow::keyPressEvent(QKeyEvent *event){ qDebug()<<"12123";}