M
manchen
Unregistered / Unconfirmed
GUEST, unregistred user!
需要定义一个数据结构,它包含一个字符,一个整型数字,一个字符列表
type
dx=record
Viewname:string;
Colorindex:integer;
Yyrnames:TStringList;
end;
这个是组成的一个单位,它本身是一个列表
type
dxlist=record
count:integer;
arrdx:array of dx;
end;
如何用类来定义它呢,我需要对这个数据进行赋值,控制
type
dx=record
Viewname:string;
Colorindex:integer;
Yyrnames:TStringList;
end;
这个是组成的一个单位,它本身是一个列表
type
dxlist=record
count:integer;
arrdx:array of dx;
end;
如何用类来定义它呢,我需要对这个数据进行赋值,控制