Delphi의 함수 정의 및 선언 위치
2308 단어 Delphi
procedure TForm1.btn1Click(Sender: TObject); 및 function showstr:string;
unit Test;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
btn1: TButton;
procedure btn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
function showstr: string;
begin
Result:= 'lala';
end;
procedure TForm1.btn1Click(Sender: TObject);
begin
ShowMessage(showstr);
end;
end.
함수(또는 프로세스) A가 함수(또는 프로세스) B 다음에 정의되면 함수 B가 함수 A를 호출하면 컴파일할 때 다음 예와 같이 오류가 발생합니다.
아니면 procedure TForm 1.btn1Click(Sender: TObject); 및 function showstr:string;
unit Test;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
btn1: TButton;
procedure btn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.btn1Click(Sender: TObject);
begin
ShowMessage(showstr);
end;
function showstr: string; //showstr TForm1.btn1Click ,
begin
Result:= 'lala';
end;
end.
함수(또는 프로세스) A가 함수(또는 프로세스) B 다음에 정의되고 함수 B가 함수 A를 호출하여 컴파일할 때 오류를 보고하지 않으려면 지금 B 앞에서 A를 성명한 다음에 B에서 A를 호출해야 한다. 이때 A가 B 이전에 정의했든 B 다음에 정의했든 모두 컴파일에 성공할 수 있다.아래의 예와 같다
unit Test;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
function showstr: string; // interface
type
TForm1 = class(TForm)
btn1: TButton;
procedure btn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
function showstr: string;
begin
Result:= 'lala';
end;
procedure TForm1.btn1Click(Sender: TObject);
begin
ShowMessage(showstr);
end;
end.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.