面向过程的门面模式

本文介绍了一个使用Delphi编写的简单程序示例,包括两个单元:Hello1和Hello2,分别用于显示不同的问候消息。通过接口单元InterFace1将这两个单元的功能组合起来,并在主程序Main中提供按钮触发相应功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

{*******************************************************}
{                                                       }
{       业务逻辑一                                      }
{                                                       }
{       版权所有 (C) 2008 陈新光                        }
{                                                       }
{*******************************************************}

unit Hello1;

interface

uses
  Dialogs;

procedure SayHello;

implementation

procedure SayHello;
begin
  ShowMessage('hello one');
end;  

end.
{*******************************************************}
{                                                       }
{       业务逻辑二                                      }
{                                                       }
{       版权所有 (C) 2008 咏南工作室                    }
{                                                       }
{*******************************************************}

unit Hello2;

interface

uses
  Dialogs;

procedure SayHello2;

implementation

procedure SayHello2;
begin
  ShowMessage('hello two');
end;  

end.
{*******************************************************}
{                                                       }
{       接口                                            }
{                                                       }
{       版权所有 (C) 2008 咏南工作室                    }
{                                                       }
{*******************************************************}

unit InterFace1;

interface

uses
  Hello1,Hello2;

procedure Say1;
procedure Say2;

implementation

procedure Say1;
begin
  SayHello;
end;

procedure Say2;
begin
  SayHello2;
end;  

end.
{*******************************************************}
{                                                       }
{       主程序                                          }
{                                                       }
{       版权所有 (C) 2008 咏南工作室                    }
{                                                       }
{*******************************************************}

unit Main;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs,StdCtrls,
  InterFace1;//接口

type
  TForm1 = class(TForm)
    btn1: TButton;
    btn2: TButton;
    procedure btn1Click(Sender: TObject);
    procedure btn2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.btn1Click(Sender: TObject);
begin
  Say1;
end;

procedure TForm1.btn2Click(Sender: TObject);
begin
  Say2;
end;

end.
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值