H
hnnyejccool
Unregistered / Unconfirmed
GUEST, unregistred user!
在TYPE下声明一个结构
tsrecord=Record
Name:String;
Age:String;
Career:String;
Income:String;
Remark:String;
end;
然后想要再添加一个Person数组变量储存这些信息,然后添加一个保存记录的编号CurRecord如下
Person:array [0..9] of TsRecord;
CurRecord:integer;
这个总是在运行的时候 好像Person这个数组得不到定义 ,为什么啊 我这样写对吗 ?
tsrecord=Record
Name:String;
Age:String;
Career:String;
Income:String;
Remark:String;
end;
然后想要再添加一个Person数组变量储存这些信息,然后添加一个保存记录的编号CurRecord如下
Person:array [0..9] of TsRecord;
CurRecord:integer;
这个总是在运行的时候 好像Person这个数组得不到定义 ,为什么啊 我这样写对吗 ?