我做了一个简单的程序:

哪个运行主程序->类程序->第二类

让我们看一下代码:

主程序:

QApplication a(argc, argv);
testqtc w; // this one intresting i call this 'first_class'
w.show();
return a.exec();
}

在“first_class”中,我有:
    testqtc::testqtc(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);
    QTimer *timer = new QTimer(this);
    bool p = connect(timer, SIGNAL(timeout()), this, SLOT(updateCaption2()));
    std::cout << p;
    timer->start(1000);

    class1 class1(this); // i call this 'second class' which run under first class
}
void testqtc::updateCaption2(){
    std::cout << "first_class" << std::endl;
}

在“第二类”中,我有:
class1::class1(QObject *parent)
    : QObject(parent)
{
    QTimer *timer = new QTimer(this);
    bool p = connect(timer, SIGNAL(timeout()), this, SLOT(updateCaption()));
    std::cout << p;
    timer->start(1000);
}
void class1::updateCaption(){
    std::cout << "second class" << std::endl;
}

输出:
11first_class
first_class
first_class (-> and only first_class per second)

很明显,第二类连接器不会启动。
函数connect返回true,但是插槽未执行。

如何在“second_class”中使用连接功能?

最佳答案

class1实例在testqtc构造函数中分配在堆栈上,这意味着在调用超时插槽之前销毁了该实例,以解决它在堆上分配的情况:

class1* class1_ptr = new class1 (this);

09-27 00:20