打印本文 打印本文 关闭窗口 关闭窗口
简易对象垃圾回收框架 for Delphi
作者:武汉SEO闵涛  文章来源:敏韬网  点击数2238  更新时间:2009/4/23 18:35:10  文章录入:mintao  责任编辑:mintao
    procedure Put(const AObject: TObject);

    procedure Recycle(const MaxCount: Integer);

  end;

 

function GarbagCollector: TGarbagCollector;

 

implementation

 

var

  _GarbagCollector: TGarbagCollector;

 

function GarbagCollector: TGarbagCollector;

begin

  if not Assigned(_GarbagCollector) then

    _GarbagCollector := TGarbagCollector.Create;

  result := _GarbagCollector;

end;

 

 

{ TGarbagCollect }

 

constructor TGarbagCollector.Create;

begin

  FList := TThreadList.Create;

end;

 

destructor TGarbagCollector.Destroy;

begin

  try

    Recycle(FList.LockList.Count);

  finally

    FList.UnlockList;

  end;

  FList.Free;

end;

 

procedure TGarbagCollector.Put(const AObject: TObject);

begin

  try

    FList.LockList.Add(AObject);

  finally

    FList.UnlockList;

  end;

end;

 

procedure TGarbagCollector.Recycle(const MaxCount: Integer);

var

  I: Integer;

  AList: TList;

begin

  AList := FList.LockList;

  try

    I := 0;

    while (AList.Count > 0) and (I < MaxCount) do

    begin

      TObject(AList.Last).Free;

      AList.Delete(AList.Count - 1);

      Inc(I);

    end;

  finally

    FList.UnlockList;

  end;

end;

 

initialization

 

finalization

  if Assigned(_GarbagCollector) then

    _GarbagCollector.Free;

 

end.

3.3   使用举例

引用untGarbagCollector单元后,可以直接使用GarbagCollector进行对象的销毁和回收。

n         销毁

AObject := TObject.Create;

GarbagCollector.Put(AObject);

n         回收

可以在定时器、线程以及其他场合调用Recycle方法。

MaxCount是用于控制每次销毁个数的参数,主要是怕一次性销毁太多占用过多的cpu。

(突然发现还可以扩展为限制时间进行销毁,比如每次销毁耗时不超过的n毫秒)。

3.4   使用场合

在本案例中,为了防止对象过早销毁引起访问冲突,而引入了垃圾回收技术。

上一页  [1] [2] [3]  下一页

打印本文 打印本文 关闭窗口 关闭窗口