Einzelnen Beitrag anzeigen

Benutzerbild von Neutral General
Neutral General

Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#1

Generische TObjectlist erzeugt AVs

  Alt 2. Nov 2009, 10:51
Hi,

Folgender Testcode erzeugt bei mir eine Zugriffsverletzung:

Delphi-Quellcode:
type
  TTest = class
  end;

var
  test: TObjectList<TTest>

procedure TForm1.Button1Click(Sender: TObject);
var tmp: TTest;
begin
  test := TObjectList<TTest>.Create;

  tmp := TTest.Create;
  test.Add(tmp);

  Caption := IntToStr(test.IndexOf(tmp)); // <--- IndexOf !

  test.Free;
end;
Das sollte eigentlich nicht so sein oder?

Gruß
Neutral General
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
  Mit Zitat antworten Zitat