L
lgg30
Unregistered / Unconfirmed
GUEST, unregistred user!
各位高手:
为什么在Delphi里定义这样的记录类型不行,
type
celltype=record
element:real;
next:^celltype;
end;
会提示[Error] Unit1.pas(1): Type 'celltype' is not yet completely defined
如果把next:^celltype去掉就可以通过了,是不是celltype类型还没定义完不能用?
为什么在Delphi里定义这样的记录类型不行,
type
celltype=record
element:real;
next:^celltype;
end;
会提示[Error] Unit1.pas(1): Type 'celltype' is not yet completely defined
如果把next:^celltype去掉就可以通过了,是不是celltype类型还没定义完不能用?