gpt4 book ai didi

c++ - 在 Qt 控制台场景中未调用析构函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:30:03 26 4
gpt4 key购买 nike

我有一个问题可能看起来太简单了,但无论如何我都想了解答案。

示例代码如下。


   #include <QtCore/QCoreApplication>
#include "parent.h"
#include "childa.h"
#include "childb.h"

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);

Parent one;
ChildA two;
ChildB three;

return a.exec();
}

#ifndef CHILDA_H
#define CHILDA_H

#include <iostream>
#include "parent.h"

using namespace std;

class ChildA : public Parent
{
public:
ChildA();
~ChildA();
};

#endif // CHILDA_H

  #ifndef CHILDB_H
#define CHILDB_H

#include <iostream>
#include "parent.h"

using namespace std;

class ChildB : public Parent
{
public:
ChildB();
~ChildB();
};

#endif // CHILDB_H

#ifndef PARENT_H
#define PARENT_H

#include <iostream>

using namespace std;

class Parent
{
public:
Parent();
virtual ~Parent();
};

#endif // PARENT_H

#include "childa.h"

ChildA::ChildA()
{
cout << "in Child A const\n";
}

ChildA::~ChildA()
{
cout << "in Child A destructor\n";
}

#include "childb.h"

ChildB::ChildB()
{
cout << "in Child B const\n";
}

ChildB::~ChildB()
{
cout << "in Child B destructor\n";
}

#include "parent.h"

Parent::Parent()
{
cout << "in Parent const\n";
}

Parent::~Parent()
{
cout << "in Parent destructor\n";
}

为什么我没有看到调用的析构函数?
对象变量应该超出 main 的范围并且应该调用析构函数,不是吗?

最佳答案

您的对象永远不会超出范围,因为您的应用程序不存在(即您不会超出 main 函数的范围)。您需要关闭您的应用程序,您可以这样做:

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);

Parent one;
ChildA two;
ChildB three;
// This will immediately terminate the application
QTimer::singleShot(0, &a, SLOT(quit()));
return a.exec();
}

请注意,您可以将计时器设置为在特定时间内执行,对于上面的示例,我已将其设置为在 0 毫秒后执行。

如果不想关闭应用,那么可以强制作用域

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
// Force scope
{
Parent one;
ChildA two;
ChildB three;
}

return a.exec();
}

关于c++ - 在 Qt 控制台场景中未调用析构函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13465172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com