2 Star 2 Fork 1

Joe/frp Manage2.0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 692 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joe 提交于 2023-01-11 08:24 . 全新的2.0版本
#include "mainform.h"
#include <QApplication>
#include <QSharedMemory>
#include <QMessageBox>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
static QSharedMemory *singleApp = new QSharedMemory("SingleApp");//创建“SingleApp”的共享内存块
if(!singleApp->create(1))//创建失败,说明已经有一个程序运行,
{
QMessageBox::information(NULL,"tips","The program is already running");//弹出提示框 注意:该提示应该在 qApp->quit();之前,否则提示框将会一闪而过
qApp->quit();//退出当前程序
return -1;
}
MainForm w;
//w.show();
return a.exec();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/li-da-diao/frp-manage2.0.git
git@gitee.com:li-da-diao/frp-manage2.0.git
li-da-diao
frp-manage2.0
frp Manage2.0
master

搜索帮助