当前位置:网站首页>类方法和类变量的使用
类方法和类变量的使用
2022-07-04 20:34:00 【pcplayer】
前言
Delphi 语法,有类方法 class procedure 和 class function ;也有类变量 class var。
可以用来干嘛?
场景
WebService 服务器端,多个 SoapDataModule 共用的方法,放到一个 DataModule 里面去。
每次 SOAP 调用,需要在 SoapDataModule 实现接口方法里面,创建该 DataModule 的实例,调用其方法,然后释放。
创建和释放的代码,总是重复。并且,没有对象缓冲池。
当然,可以给这个 DataModule 实现一个基于接口释放的对象缓冲池,但代码架构就比较复杂了。
如果想少写代码,则可考虑在该 DataModule 里面实现自己的创建和释放以及缓冲管理的代码。
背景:
请查阅本篇文章的上一篇文章。
代码例子
以下代码测试通过
该模块自己实现自己的缓冲池的代码
unit UDmPool;
interface
uses
System.SysUtils, System.Classes;
type
TDmPool = class(TDataModule)
private
{ Private declarations }
class var FList: TList;
public
{ Public declarations }
class function GetMyDM: TDmPool;
class procedure ReleaseDM(DM: TDmPool);
class function GetPoolCount: Integer;
function HelloPool(const S: string): string;
end;
implementation
{%CLASSGROUP 'Vcl.Controls.TControl'}
{$R *.dfm}
{ TDmPool }
class function TDmPool.GetMyDM: TDmPool;
var
DM: TDmPool;
begin
if not Assigned(FList) then FList := TList.Create;
if FList.Count = 0 then
begin
DM := TDmPool.Create(nil);
Result := DM;
end
else
begin
DM := TDmPool(FList.Items[0]);
FList.Delete(0);
end;
end;
class function TDmPool.GetPoolCount: Integer;
begin
if not Assigned(FList) then
begin
Result := 0;
Exit;
end;
Result := FList.Count;
end;
function TDmPool.HelloPool(const S: string): string;
begin
Result := 'Hello, ' + S + '; This is DmPool';
end;
class procedure TDmPool.ReleaseDM(DM: TDmPool);
begin
FList.Add(DM);
end;
end.
在 SOAPDATAMODULE 里面调用它的代码
function TSoapDM_A.HelloPool(const S: string): string;
var
DM: TDmPool;
begin
DM := TDmPool.GetMyDM;
Result := DM.HelloPool('SoapDM_A' + S);
TDmPool.ReleaseDM(DM);
end;
服务器端界面显示缓冲池数量的代码
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Label2.Caption := 'PoolCount = ' + TDmPool.GetPoolCount.ToString;
end;
结论:
使用 class function 和 class var 可以解决把重复代码集中实现在一个类里面的预期。同时实现一个简单的缓冲池。
边栏推荐
- 奋斗正当时,城链科技战略峰会广州站圆满召开
- HMS Core 统一扫码服务
- 宝塔 7.9.2 宝塔控制面板绕过 手机绑定认证 绕过官方认证
- Huawei ENSP simulator enables devices of multiple routers to access each other
- 创客思维在高等教育中的启迪作用
- 华为ensp模拟器 给路由器配置DHCP
- What are the functional modules of RFID warehouse management system solution
- redis RDB AOF
- heatmap.js图片热点热力图插件
- [server data recovery] a case of RAID5 data recovery stored in a brand of server
猜你喜欢
随机推荐
Redis:Redis配置文件相关配置、Redis的持久化
【微服务|SCG】Predicate的使用
ApplicationContext 与 BeanFactory 区别(MS)
Redis transaction
学习突围3 - 关于精力
Numpy vstack and column_ stack
Billions of citizens' information has been leaked! Is there any "rescue" for data security on the public cloud?
HMS Core 机器学习服务
redis管道
2021 CCPC Harbin I. power and zero (binary + thinking)
Explication détaillée du mécanisme de distribution des événements d'entrée multimodes
2021 CCPC 哈尔滨 I. Power and Zero(二进制 + 思维)
Redis pipeline
解读创客教育中的各类智能化组织发展
Stealing others' vulnerability reports and selling them into sidelines, and the vulnerability reward platform gives rise to "insiders"
UTF encoding and character set in golang
js 3D爆炸碎片图片切换js特效
The video sound of station B is very low - solution
Hwinfo hardware detection tool v7.26 green version
Huawei ENSP simulator configures DHCP for router