type
  PRecord = ^TMyRec;
  TMyRec = record
    s: string[8];
    i: integer;
    d: double;
end;
var 
  MyList: TList;
  PR: PRecord;
begin
  MyList := TList.Create;      
  try
    New(PR);
    PR.s := '10000001';
    PR.i := 1001;
    PR.d := 0.1;
    MyList.Add(PR);  //存入TList
    {...}
    PR := MyList.Items[0];
    showMessage(inttostr(PR.i) + ': ' + PR.s); //显示
  finally
    MyList.Free;
  end;
end;

相关文章:

  • 2022-12-23
  • 2021-06-26
  • 2021-06-15
  • 2022-12-23
  • 2021-11-08
  • 2022-02-18
  • 2021-08-01
猜你喜欢
  • 2022-12-23
  • 2021-06-20
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案