gpt4 book ai didi

c++ - 创建一个没有父级的新 Qt 窗口是否也会创建一个新线程?

转载 作者:太空狗 更新时间:2023-10-29 20:22:31 26 4
gpt4 key购买 nike

我的问题分为两部分:

  1. mainWindow 是否在运行 main() 的线程以外的线程中生成?
  2. 当 main() 返回时,mainWindow 如何不立即超出范围?

在下面的示例中,创建并显示了一个窗口,并且 main 几乎立即返回。

主要.cpp

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();

return a.exec();
}

主窗口.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}

MainWindow::~MainWindow()
{
delete ui;
}

主窗口.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();

private:
Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

主窗口示例.pro

#-------------------------------------------------
#
# Project created by QtCreator 2016-05-23T10:55:03
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = MainWindowExample
TEMPLATE = app


SOURCES += main.cpp\
mainwindow.cpp

HEADERS += mainwindow.h

FORMS += mainwindow.ui

最佳答案

  1. 没有为 mainWindow 创建新线程
  2. mainWindow 事件循环在 a.exec() 范围内执行 - 它会阻塞直到应用程序退出(例如 - 最后一个顶级窗口关闭)。

所以 mainWindow 不会超出范围,因为它是 main 执行所有操作。

使用如下代码检查它:

std::cout << "starting application event loop" << std::endl;
const int ret = a.exec();
std::cout << "after exec" << std::endl; // or any other code here
return ret;

来自 QApplication 文档:

Enters the main event loop and waits until exit() is called, then returns the value that was set to exit() (which is 0 if exit() is called via quit()).

关于c++ - 创建一个没有父级的新 Qt 窗口是否也会创建一个新线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37394158/

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