Das mit dem Klonen geht auch ganz simpel, erstelle dir ein Clone Methode, die dann
FValue
kopiert und die Elemente aus dem (jetzt) Array (sind ja auch nur
IVaraíable<T>
wiederum clont.
Hier mal auf die Schnelle mit dem Dictionary:
Delphi-Quellcode:
function TVariable<T>.Clone : IVariable<T>;
begin
Result := TVariable<T>.Construct;
Result.Value := FValue;
for LKey in FVarDict.Keys do
Result[LKey] := FVarDict[LKey].Clone;
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)