传说:学习编程的第一件事就是在屏幕上输出“Hello,world”,咱也来一个。
1.打开编辑器:Delphi 10.4;
2.新建应用:file--new--windows vcl application(delphi);
3.添加一个按钮(button1),将按钮的caption 改为“点我”;
4.双击Button1 进入代码编辑界面;
5.输入代码:showmessage('Hello,world!');
6.运行程序。
完整代码如下:
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
showmessage('Hello,world!'); //就需要写这句代码,其他代码都是自动生成的
end;
end.