linux打开一个exe,如何强制我的应用程序只能打开一个exe文件? qt,linux

这段代码展示了如何在Qt应用程序中防止多个实例同时运行。通过使用QSharedMemory来检查是否存在其他实例,如果已存在则退出,确保只有一个实例运行。此方法适用于Linux和Windows,适用于控制台及GUI应用程序。
摘要由CSDN通过智能技术生成

在main.cpp中使用以下代码可防止运行多个应用程序实例。我在Linux下测试了这个代码(在QtCreator中),它的工作原理(也适用于Windows)。我发现这个解决方案简单易用。该示例适用于控制台应用程序。该代码对于GUI应用程序保持不变,请检查代码中的注释。

//main.cpp

#include //Console application

//#include //GUI application

#include

#include

//Your QMainWindow derivated class goes here :

//#include "MainWindow.h"

int main(int argc, char *argv[])

{

QCoreApplication app(argc, argv);

app.processEvents();

//---- Check for another instance code snippet ----

//GUID : Generated once for your application

// you could get one GUID here: http://www.guidgenerator.com/online-guid-generator.aspx

QSharedMemory shared("62d60669-bb94-4a94-88bb-b964890a7e04");

if(!shared.create(512, QSharedMemory::ReadWrite))

{

// For a GUI application, replace this by :

// QMessageBox msgBox;

//msgBox.setText(QObject::tr("Can't start more than one instance of the application."));

//msgBox.setIcon(QMessageBox::Critical);

//msgBox.exec();

qWarning() << "Can't start more than one instance of the application.";

exit(0);

}

else {

qDebug() << "Application started successfully.";

}

//---- END OF Check for another instance code snippet ----

// Only one instance is running, declare MainWindow

//MainWindow myMainWindow;

//myMainWindow.show();

//We enter the Qt Event loop here, we don't leave until the MainWindow is closed

//or the console application is terminated.

return app.exec();

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值