Delphi의 Interface 인터페이스 사용 방법
4982 단어 interface
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;
type
// , ;
ICar = interface (IInterface)
['{ED52E264-6683-11D7-B847-001060806215}']
procedure drive;
end;
// 1, TinterfacedObject ;
TCar = class(TInterfacedObject,ICar)
public
procedure drive;
end;
// 2, TinterfacedObject ;
THouseCar = class(TInterfacedObject,ICar)
public
procedure drive;
end;
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
function getCar:ICar; // ICAR, DLL ;
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
{ TCar }
procedure TCar.drive;
begin
ShowMessage('TCar.drive');
end;
{ THouseCar }
procedure THouseCar.drive;
begin
ShowMessage('THouseCar.drive');
end;
procedure TForm1.Button1Click(Sender: TObject);
var
s:ICar;
begin
s:= getCar;
s.drive;
end;
function TForm1.getCar:ICar;
begin
Result:=THouseCar.Create; // ;
// Result:=TCar.Create;
end;
end.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
조건자로 필터링프로그래밍에서 컬렉션이 있을 때 요구 사항을 충족하는 부분을 필터링하고 나머지는 버려야 하는 경우가 있습니다. 자세한 예는 환자 기록 목록이 있고 미성년 환자 목록을 가져오려는 경우입니다. 이 코드를 자바 파일에 복...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.