![]() |
Delphi-Version: 5
Problem mit Property und Indexübergabe
Hallo,
Hier mal kurz mein Beispielobject:
Delphi-Quellcode:
Ich habe nun folgendes Problem:
Type A = record
Date1 : byte; Date2 : byte; Date3 : array of B; end; Type B = record Date1 : byte; Date2 : byte; end; Type Test = class private FData = array of A; procedure FUpdateBinA(IndexofA : integer;IndexofB: integer; AData :B); public property UpdateBinA[IndexofA : integer;IndexofB: integer] : read FReadBinA write FUpdateBinA; end; Man erstelle Object Test, welches z.B. FData von der Länge 10 hat. Nun erstelle ich ein Record vom Type B. Jetzt möchte ich Date3 in FData von Test an einer beliebingen Stelle ändern, und zwar über die Property UpdateBinA; Das Problem das ich jetzt habe ist das der zwei Indizes: das hier funktioniert nicht:
Delphi-Quellcode:
Was mache ich falsch, bzw. wo ist hier der Denkfehler, bei einem Index geht es schließlich auch!
var Data : B; .... Test.UpdateBinA[0,0] := Data;
LG Marco |
AW: Problem mit Property und Indexübergabe
Wär da nicht UpdateBinB ein besserer Bezeichner?
Delphi-Quellcode:
Test = class
private FData: array of A; function FReadBinB(IndexofA, IndexofB: integer): B; procedure FWriteBinB(IndexofA, IndexofB: integer; const Value: B); public property UpdateBinB[IndexofA, IndexofB: integer]: B read FReadBinB write FWriteBinB; end; |
AW: Problem mit Property und Indexübergabe
Naja es geht ja nicht um den Bezeichner, sondern darum dass die Methode dann nicht funktioniert.
|
AW: Problem mit Property und Indexübergabe
War ja auch nur ein Hinweis nebenbei. :wink:
Funktioniert es denn mit meiner Klassendefinition? Wo hängts noch? |
AW: Problem mit Property und Indexübergabe
Joah es hat funktioniert...
Ich habe bei mir irgenwo ne falsche Variable genommen und bin nicht drauf gekommen.... |
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:57 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz