0

我有一个问题,我需要来自 QT Designer 的 GUI 为从终端运行的单独程序提供值,其中来自 GUI 的值被“打印”到终端界面(带有 GCC 编译器的 Linux)

我研究过 pthread,但它们的应用示例仅限于应用内使用。我的主文件中的代码如下:

#include "main_window.h"

#include <QApplication>

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>


void *thr_func(void *thread_id)
{
    int tid = thread_id;
    pthread_mutex_lock(&lock_x);
    cout << "thread" << tid << end1;
    cout << xValue << end1;
    cout << yValue << end1;
    cout << zValue << end1;
    pthread_mutex_unlock(&lock_x);
}

int main(int argc, char *argv[])
{
    pthread_create(thread_1, NULL, thr_func, NULL)

    while(true)
    {
        QApplication a(argc, argv);
        MainWindow w;
        w.show();
        return a.exec();
    }
    pthread_exit(NULL);
}

**请注意,xValue、yValue 和 zValue 已经从 QT 应用程序流式传输到文本文件。我正在调整应用程序以进行终端运行和控制。

4

0 回答 0