Q&A

  • 클래스를 배열에 할당
procedure TForm1.Button1Click(Sender: TObject);
var
  people : array of Tstruct;     // 클래스를 배열
begin

  setlength(people, 1);

  people[0].name :=  edit1.text;  

// edit1.text 값이 아이고 people[0]에 nill 값이 들어가네요..
class를 구조체로 바꾸면 잘되는데..
뭐를 잘못한건가요..?



1  COMMENTS