记录类型的定义 ( 积分: 100 )

  • 主题发起人 主题发起人 lgg30
  • 开始时间 开始时间
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类型还没定义完不能用?
 
yes, but you can use it as:

type
pcelltype = ^celltype;
celltype = record
element:real;
next:pcelltype;
end;
 
后退
顶部