gpt4 book ai didi

c++ - 你如何在你的程序后台运行一个函数(特别是一个自动保存函数)? QT/C++

转载 作者:搜寻专家 更新时间:2023-10-31 02:10:32 26 4
gpt4 key购买 nike

在我的代码中,我想集成一个每隔几秒左右运行一次的自动保存功能。我希望它在后台运行,因为我还有其他要同时运行的东西。那么我该怎么做呢?

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <fstream>
#include <QFile>
#include <QDebug>
using namespace std;

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

// Setup code
ui->textEdit->setReadOnly(true);
ui->textEdit->append("Select one of the buttons on the left to pick a log");

}

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

string lastSavedText[] = {
" ",

" "
};

QString qLastSavedTextHome, qLastSavedTextWork;

这是我的第一个按钮

void MainWindow::on_homeButton_clicked() {
// Preparing text edit
ui->textEdit->setReadOnly(false);
ui->textEdit->clear();
ui->textEdit->setOverwriteMode(true);

// Loading previously saved text
QFile file { "home.apl" };
if ( !file.open(QIODevice::ReadOnly | QIODevice::Text) ) {
qDebug() << "Could not open file!";
return;
}

const auto& lastSavedText = file.readAll();
file.close();

ui->textEdit->setPlainText( lastSavedText );
}

这是我的第二个

void MainWindow::on_workButton_clicked() {
// Preparing text edit
ui->textEdit->setReadOnly(false);
ui->textEdit->clear();
ui->textEdit->setOverwriteMode(true);

// Loading previously saved text
QFile file2 { "work.apl" };
if ( !file2.open(QIODevice::ReadOnly | QIODevice::Text) ) {
qDebug() << "Could not open file!";
return;
}

const auto& lastSavedText = file2.readAll();
file2.close();

ui->textEdit->setPlainText( lastSavedText );

}

这是我希望通过自动保存消除的保存按钮

void MainWindow::on_saveButton_clicked() {

// Converts textEdit to string
QString textEditText = ui->textEdit->toPlainText();
lastSavedText[0] = textEditText.toStdString();

// Saving files
ofstream home;
home.open("home.apl");
home << lastSavedText[0];
home.close();

ofstream work;
work.open("work.apl");
work << lastSavedText[1];
work.close();
}

最佳答案

有2个解决方案。

简单的

只需使用一个计时器来执行保存按钮的代码。您可以设置定时器执行任何时间段。

QTimer

但如果此操作花费太多时间,则可能会导致软件卡住。在这种情况下,您可以将保存的函数放在线程中。


线程

您可以使用线程来做到这一点。

线程,基本上是一个从主进程中分离出来的进程,可以同时运行,每个线程都做自己的工作。

注意,线程之间的通信,最安全的方法是使用信号。

Qt Threads Documentation

Example

void MyObject::startWorkInAThread()
{
WorkerThread *workerThread = new WorkerThread(this);
connect(workerThread, SIGNAL(resultReady(QString)), this, SLOT(handleResults(QString)));
connect(workerThread, SIGNAL(finished()), workerThread, SLOT(deleteLater()));
workerThread->start();
}

关于c++ - 你如何在你的程序后台运行一个函数(特别是一个自动保存函数)? QT/C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45069997/

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