📄 preview.pas
字号:
unit Preview;
{*******************************
If you change any text in
this memo the AFTER memo
is updated.
*********************************}
interface
uses Windows, SysUtils, Classes,
Graphics, Forms;
type
TClass = class(TObject)
private
procedure M1(S: Integer); virtual;
public
function Foo: Integer;
end;
implementation
function Foo: Integer;
begin
Result := 0;
end;
procedure TClass.M1(S: Integer);
procedure SubProc;
begin
S := 9;
end;
const
J = 10;
var
J: Double;
begin
if S > J then
begin
SubProc;
end
else
begin
S := Foo;
end;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -