H
hitman007260
Unregistered / Unconfirmed
GUEST, unregistred user!
我定义一个record
type myrecord = record
chr: char;
int: Integer;
longstring: ansistring;
stringa: string[8];
stringb:string;
flg: Boolean;
end;
arrmyrecord= array[0.. 1024] of myrecord;
分别付值后
在程序中使用arrmyrecord数组
从数组中取出来的值
arrmyrecord[0].chr,arrmyrecord[0].int,arrmyrecord[0].stringa,arrmyrecord[0].flg都在
arrmyrecord[0].ansistring,arrmyrecord[0].string得值却不见了
这是为什马?如何解决?
type myrecord = record
chr: char;
int: Integer;
longstring: ansistring;
stringa: string[8];
stringb:string;
flg: Boolean;
end;
arrmyrecord= array[0.. 1024] of myrecord;
分别付值后
在程序中使用arrmyrecord数组
从数组中取出来的值
arrmyrecord[0].chr,arrmyrecord[0].int,arrmyrecord[0].stringa,arrmyrecord[0].flg都在
arrmyrecord[0].ansistring,arrmyrecord[0].string得值却不见了
这是为什马?如何解决?