【名词&注释】
数据类型(data type)、表达式、线性表(linear list)、实际情况(actual situation)、标识符(identifier)、最大数
[单选题]请判断下列代码在程序关闭时,正确的对象释放顺序
A. TMybutton=class(Tbutton)
B. Protected
C. Destructor Destroy;override;
D. End;
E. …………
F. Destroy;
G. Begin
H. inherited;
I. MessageBox(PChar(Name),’Destroy’,mb_ok);
J. end;
K. var AButton,BButton:TMyButton;
L. FormCreate(Sender:TObject);
M. begin
N. Create(Nil);
O. With AButton do
P. begin
Q. Parent:=form1;
R. Top:=100;
S. Left:=100;
T. Visible:=True;
U. Name:=’ABtn’;
V. end;
W. Create(Application);
X. With BButton do
Y. begin
Z. Parent:=Form1;