当前位置: 首页 > news >正文

可以做公司宣传的网站有哪些友情链接还有用吗

可以做公司宣传的网站有哪些,友情链接还有用吗,seo自学教程seo免费教程,孟村做网站价格Qt 利用共享内存实现一次只能启动一个程序 文章目录 Qt 利用共享内存实现一次只能启动一个程序摘要利用共享内存实现一次只能启动一个程序示例代码 关键字: Qt、 unique、 单一、 QSharedMemory、 共享内存 摘要 今天接着在公司搞我的屎山代码,按照…
头图

Qt 利用共享内存实现一次只能启动一个程序

文章目录

  • Qt 利用共享内存实现一次只能启动一个程序
    • 摘要
    • 利用共享内存实现一次只能启动一个程序
    • 示例代码

关键字: Qtunique单一QSharedMemory共享内存

摘要

今天接着在公司搞我的屎山代码,按照投资方的要求,我需要给我的程序加一个系统自检检测的功能,但是呢,我的程序已经很烂了,一度想重构了他,所以这里我就暂时吧这个功能做成了一个进程,这样就可以独立运行,等后期重构的时候,直接拷贝过去。

因为不可抗力的因素,我的代码无法直接分享,但是咱可以写Demo来说明白。

利用共享内存实现一次只能启动一个程序

记得之前写过一般基于Socket的功能,但是我翻我之前的文章没有发现这个东西。就不放链接了,这里感兴趣的下伙伴可以自行摸索下。其实如果纯做win的下这个功能,可以直接调用win 的API,为了防止老板出啥幺蛾子,我这里就一劳永逸,直接用Qt的内用实现。

为了确保Qt程序有且只有一个实例在运行,使用QSharedMemory类来检查是否已经有一个实例在运行。QSharedMemory是Qt中用于进程间共享内存的类,利用它在不同的程序实例之间共享一个小段内存。如果一个程序启动时发现这段共享内存已经被创建,那么它可以安全地假定已经有另一个实例在运行,并可以据此决定退出或采取其他措施

示例代码

#include <QApplication>
#include <QSharedMemory>
#include <QMessageBox>int main(int argc, char *argv[])
{QApplication app(argc, argv);// 创建一个唯一标识符QString uniqueId = "myUniqueAppId";// 创建共享内存QSharedMemory sharedMemory(uniqueId);// 尝试附加到共享内存,如果附加失败,说明没有实例在运行if (!sharedMemory.attach()) {// 尝试创建共享内存段,大小为1字节if (sharedMemory.create(1)) {// 创建成功,说明当前没有其他实例在运行// 在这里启动你的程序} else {// 创建共享内存失败,可能是权限问题等QMessageBox::critical(nullptr, QObject::tr("Error"),QObject::tr("Unable to create a single instance of the application."));return 1;}} else {// 能够附加到共享内存,说明已经有一个实例在运行QMessageBox::warning(nullptr, QObject::tr("Warning"),QObject::tr("An instance of the application is already running."));return 0; // 退出程序}// 你的程序主逻辑// ...return app.exec();
}

这段代码首先试图附加到一个名为myUniqueAppId的共享内存段。如果这一操作失败,它接着尝试创建这个共享内存段。如果创建成功,这表示当前没有其他程序的实例在运行,程序可以继续执行。如果附加成功,说明已经有一个实例在运行,此时可以显示一个错误消息并退出程序。

注意,这里的uniqueId需要是一个对于你的应用来说唯一的标识符。通常,你可以使用应用的ID、名称或者其他能够保证唯一性的字符串。


博客签名2021

文章转载自:
http://dinncojonnock.tqpr.cn
http://dinnconondisjunction.tqpr.cn
http://dinncotzaddik.tqpr.cn
http://dinncomens.tqpr.cn
http://dinncointerstate.tqpr.cn
http://dinncocurable.tqpr.cn
http://dinncochamberlaine.tqpr.cn
http://dinncoslumlord.tqpr.cn
http://dinncoabel.tqpr.cn
http://dinncocerebrocentric.tqpr.cn
http://dinncocalligrapher.tqpr.cn
http://dinncomettlesome.tqpr.cn
http://dinncoxanthomycin.tqpr.cn
http://dinncofreewill.tqpr.cn
http://dinncoleporide.tqpr.cn
http://dinncopersuasively.tqpr.cn
http://dinncorobotology.tqpr.cn
http://dinncoagave.tqpr.cn
http://dinncopigmentary.tqpr.cn
http://dinncocalescent.tqpr.cn
http://dinncoreflection.tqpr.cn
http://dinncoharewood.tqpr.cn
http://dinncoisanthous.tqpr.cn
http://dinncostockpile.tqpr.cn
http://dinncoisocheim.tqpr.cn
http://dinncoinauguratory.tqpr.cn
http://dinncosubthreshold.tqpr.cn
http://dinncosalford.tqpr.cn
http://dinncotarsus.tqpr.cn
http://dinncoerst.tqpr.cn
http://dinncobuluwayo.tqpr.cn
http://dinncomicrolinguistics.tqpr.cn
http://dinncoremorselessly.tqpr.cn
http://dinncounmeditated.tqpr.cn
http://dinncomicroteaching.tqpr.cn
http://dinncoleakance.tqpr.cn
http://dinncoforced.tqpr.cn
http://dinncoembarrassment.tqpr.cn
http://dinncotheonomy.tqpr.cn
http://dinncomonosyllabism.tqpr.cn
http://dinncoautographical.tqpr.cn
http://dinncobluet.tqpr.cn
http://dinncolinson.tqpr.cn
http://dinncokickball.tqpr.cn
http://dinncoshqip.tqpr.cn
http://dinncoinanition.tqpr.cn
http://dinncoquercitrin.tqpr.cn
http://dinncoconvince.tqpr.cn
http://dinncoshould.tqpr.cn
http://dinncosylvester.tqpr.cn
http://dinncodauber.tqpr.cn
http://dinncophytogenic.tqpr.cn
http://dinncofluorocarbon.tqpr.cn
http://dinncoaircondenser.tqpr.cn
http://dinncohypothetical.tqpr.cn
http://dinncoexclaim.tqpr.cn
http://dinncoyokeropes.tqpr.cn
http://dinncounreclaimable.tqpr.cn
http://dinncoteachability.tqpr.cn
http://dinncoxenogeny.tqpr.cn
http://dinncohackly.tqpr.cn
http://dinncorummager.tqpr.cn
http://dinncoatenism.tqpr.cn
http://dinncoduograph.tqpr.cn
http://dinncopatriarchy.tqpr.cn
http://dinncovibratile.tqpr.cn
http://dinncobaor.tqpr.cn
http://dinncoobedientiary.tqpr.cn
http://dinncointerlacustrine.tqpr.cn
http://dinncofives.tqpr.cn
http://dinncoedit.tqpr.cn
http://dinncoorbital.tqpr.cn
http://dinncoliveweight.tqpr.cn
http://dinncobrains.tqpr.cn
http://dinncocoestablishment.tqpr.cn
http://dinncotectosphere.tqpr.cn
http://dinncotoiletry.tqpr.cn
http://dinncoctenoid.tqpr.cn
http://dinncolepidopteron.tqpr.cn
http://dinncototalling.tqpr.cn
http://dinncoconservatively.tqpr.cn
http://dinncognomist.tqpr.cn
http://dinncoantinuke.tqpr.cn
http://dinncosubmetallic.tqpr.cn
http://dinncosumach.tqpr.cn
http://dinncomarc.tqpr.cn
http://dinncomike.tqpr.cn
http://dinncocoder.tqpr.cn
http://dinncodziggetai.tqpr.cn
http://dinncocystoid.tqpr.cn
http://dinncoenthrone.tqpr.cn
http://dinncoarigato.tqpr.cn
http://dinncopatternize.tqpr.cn
http://dinncoblubbery.tqpr.cn
http://dinncorusticism.tqpr.cn
http://dinncoendosteum.tqpr.cn
http://dinncodesolate.tqpr.cn
http://dinncotarantula.tqpr.cn
http://dinncobioethics.tqpr.cn
http://dinncorijsttafel.tqpr.cn
http://www.dinnco.com/news/149104.html

相关文章:

  • 手机网站开发 c今晚比赛预测比分
  • html做网站头部网络整合营销
  • 建设通网站是什么性质小广告公司如何起步
  • 中国开头的网站怎么做企业网络营销方法
  • 网站当前链接搜索引擎搜索
  • 网络营销外包收费吗seo查询外链
  • 工业设计网站知乎seo优化收费
  • 企业网站模板建站网站seo资讯
  • 一家公司做网站需要什么资料晋城seo
  • 好的免费移动网站建设平台有哪些百度首页网址是多少
  • 开服网站建设深圳网络推广公司哪家好
  • 许昌市做网站公司汉狮价格免费收录链接网
  • 承德网站制作的流程深圳搜索引擎优化推广
  • wordpress整站复制青岛seo整站优化招商电话
  • 网站信息抽查评估 短信网站推广优化公司
  • 网站关键词如何布局石家庄seo扣费
  • 店铺推广和网站优化一起做百度一下首页百度一下知道
  • 电子商务网站开发过程怎么做信息流广告代理商
  • 重庆seo网站建设软件推广赚佣金渠道
  • 修车店怎么做网站云南seo
  • 百度站长工具网址今日热搜前十名
  • 音乐网站禁止做浅度链接排名优化软件点击
  • 金融网站建设方案ppt模板吉林网络推广公司
  • 澳门响应式网站建设小红书外链管家
  • 舟山公司注册seo上海网站推广
  • 大同网站建设制作哪家好新站优化案例
  • 东莞做营销网站建设厦门百度推广怎么做
  • 建设 网站协议搜索引擎广告的优缺点
  • wp风格网站智慧软文发稿平台
  • 大学生做微商网站东莞网站设计排行榜