欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Delphi - 互斥对象下实现系统的单例模式

程序员文章站 2022-03-03 08:17:29
使用CreateMutex函数创建互斥对象 利用Windows系统函数CreateMutex(),找出当前系统是否已经存在指定进程的实例,如果没有则创建一个互斥体。 CreateMutex函数原型如下: function CreateMutex(lpMutexAttributes: PSecurit ......

使用createmutex函数创建互斥对象

利用windows系统函数createmutex(),找出当前系统是否已经存在指定进程的实例,如果没有则创建一个互斥体。

createmutex函数原型如下:

function createmutex(lpmutexattributes: psecurityattributes; binitialowner: bool; lpname: pchar): thandle; 

其中参数:

lpmutexattributes :security_attributes 结构类型指针,可以为null。

binitialowner :是否初始化互斥体。

lpname :互斥体对象的名称,一般是工程的名称。

最终,函数返回一个互斥体句柄。

 

delphi winfrm利用互斥对象实现单例模式

单击project,view source;

uses 中添加windows;

begin和end之间添加如下代码。

Delphi - 互斥对象下实现系统的单例模式Delphi - 互斥对象下实现系统的单例模式

 

 

  //*****************************单例模式********************************
  createmutex(nil, false, 'application name');
  if getlasterror = error_already_exists then
  begin
    application.messagebox('系统已经开启了,请确认下!', '提示', mb_ok);
    halt(0);
  end;
    //*****************************单例模式********************************