简单工厂模式(Simple Factory Pattern)Delphi代…
2008-04-09 04:25:35来源:互联网 阅读 ()
昨天下午,看完 guoyan19811021 的设计模式之简单工厂模式(Simple Factory Pattern)(参见http://www.csdn.net/Develop/read_article.asp?id=26635) 之后,为了加深印象,我把上面的VB.Net改成了Delphi,未必有很大的意义,但还是贴出来,与大家共享。
首先建一个基类 CName,如下
type
CName= Class
private
{ Public declarations }
public
{ protected declarations}
function getFirstName:string;
function getLastName:string;
protected
{ Private declarations }
m_sFirstName:string;
m_sLastName:string;
end;
下面是2个继承类
type
CFirst001= Class(CName)
public
{ Public declarations }
constructor Create(a_sInput:string);
protected
{ protected declarations}
private
{ Private declarations }
end;
type
CFirst002 = Class(CName)
public
{ Public declarations }
constructor Create(a_sInput:string);
protected
{ protected declarations}
private
{ Private declarations }
end;
简单工厂类
type
CNameFactory = Class
public
{ Public declarations }
function getName(a_sInput:string):CName;
protected
{ Protected declarations }
private
{ Private declarations }
end;
以下是各个函数的实现部分
function CName.getFirstName:string;
Begin
result := m_sFirstName;
End;
function CName.getLastName:string;
Begin
result := m_sLastName;
End;
constructor CFirst001.Create(a_sInput:string);
var i:integer;
Begin
inherited Create;
//Add code here
i := Pos('''' '''',a_sInput);
if(i > 0) then begin //can find the '''' ''''(space)
m_sFirstName := Copy(a_sInput,1,i - 1);
m_sFirstName := Trim(m_sFirstName);
m_sLastName := Copy(a_sInput,i 1,Length(a_sInput) - i);
m_sLastName := Trim(m_sLastName);
end
else begin //can''''t find the '''' ''''(space)
m_sFirstName := '''''''';
m_sLastName := a_sInput;
end;
End;
constructor CFirst002.Create(a_sInput:string);
var
i,j:integer;
Begin
inherited Create;
//Add code here
i := Pos('''','''',a_sInput);
if(i > 0) then begin //can find the '''' ''''(space)
m_sFirstName := Copy(a_sInput,1,i - 1);
m_sFirstName := Trim(m_sFirstName);
m_sLastName := Copy(a_sInput,i 1,Length(a_sInput) - i);
m_sLastName := Trim(m_sLastName);
end
else begin //can''''t find the '''' ''''(space)
m_sFirstName := '''''''';
m_sLastName := a_sInput;
end;
End;
function CNameFactory.getName(a_sInput:string):CName;
var i:integer;
Begin
i := Pos('''','''',a_sInput);
if(i > 0) then
begin
result := CFirst002.Create(a_sInput);
end
else begin
result := CFirst001.Create(a_sInput);
end;
End;
当然,仅仅这样是不能够运行的,还需要在interface 部分加上uses
Sysutils;因为string操作的部分函数用到了它。
这样就完成了。
如有什么错误,请与我联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash