B
billson
Unregistered / Unconfirmed
GUEST, unregistred user!
下面代码
type
EarthPlanet = record
Planet: string;
R: Integer;
RCycle: Double;
PictureFileName: String;
end;
Infomation = array[0..3] of EarthPlanet;
为何Infomation前没有var关键字?
type
EarthPlanet = record
Planet: string;
R: Integer;
RCycle: Double;
PictureFileName: String;
end;
Infomation = array[0..3] of EarthPlanet;
为何Infomation前没有var关键字?