L
liangexcel
Unregistered / Unconfirmed
GUEST, unregistred user!
单元1
type
TSe = class(TObject)
private
FInfo: TInfos;
public
function TT(AFInfo: TInfos; AFLIST: TList): Boolean; virtual;
abstract;
end;
单元2:
type
PALIST = ^TALIST;
TALIST = record
FA: string[255];
FB: string[255];
FC: string;
FD: string[255];
FE: string;
FS: TStringList;
end;
TInfos = record
FF: string[255];
FG: Integer;
FH: string[255];
FI: string[255];
end;
问题:我不会指针,但是这个格式不能改,如果我才能使用单元一的function?如果才能取得单元2的赋值?单元1里面的私有变量FInfo: TInfos如何才能取得值?
type
TSe = class(TObject)
private
FInfo: TInfos;
public
function TT(AFInfo: TInfos; AFLIST: TList): Boolean; virtual;
abstract;
end;
单元2:
type
PALIST = ^TALIST;
TALIST = record
FA: string[255];
FB: string[255];
FC: string;
FD: string[255];
FE: string;
FS: TStringList;
end;
TInfos = record
FF: string[255];
FG: Integer;
FH: string[255];
FI: string[255];
end;
问题:我不会指针,但是这个格式不能改,如果我才能使用单元一的function?如果才能取得单元2的赋值?单元1里面的私有变量FInfo: TInfos如何才能取得值?