Delphi動態結構體數組傳遞值

  TMultiSelectStudent = packed record
    StudentNo: string[20];
    StudentName: string[30];
  end;
  TStudentSelectRecord = packed record
    vType: string[10]; 
    IsMultiSelect: Boolean; 
    StudentName: TRoomRecord;
    studerntType: TRoomTypeRecord;
    MultiSelectstudent: array of TMultiSelectStudent ; 
  end;
  
  引用:
  var
    arrMsStudent: TMultiSelectStudent;
    count: integer;
    begin
       count := Length(FRSR.MultiSelectStudent[0])
       SetLength(arrMsStudent, count);
       {長度用SizeOf*Count取,否則會取不全,出現亂碼}
       CopyMemory(@arrMsStudent[0], @FRSR.MultiSelectStudent[0],
        SizeOf(FRSR.MultiSelectRoom[count - 1]) * count);
     end;
相關文章
相關標籤/搜索