关于Qt 静态成员函数调用信号

标签:stat   protect   style   添加   log   cal   class   hang   conn

class globalCalcThread;extern globalCalcThread *g_calcThread;class globalCalcThread : public QThread{    Q_OBJECTpublic:    globalCalcThread();    ~globalCalcThread();      //添加一个静态函数,让外部函数调用    static void change();    void emitSignal();protected:    void run(); signals:    void onChange();};globalCalcThread *g_calcThread = new globalCalcThread;void globalCalcThread::change(){    g_calcThread->emitSignal();}void globalCalcThread::emitSignal(){    emit this->onChange();}connect(g_calcThread,SIGNAL(onChange()),this,SLOT(sl_Change()));在外部调用change()静态成员函数就可以发射信号了

转自:https://blog.csdn.net/u011962883/article/details/78490441

关于Qt 静态成员函数调用信号

标签:stat   protect   style   添加   log   cal   class   hang   conn

原文:https://www.cnblogs.com/liushui-sky/p/10955398.html

(0)

相关推荐