unit uMain;
interface
uses
Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, Contnrs, System.Generics.Collections,
System.Classes,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.StdCtrls;
type
TForm1 =
class(TForm)
btn1: TButton;
btnKey: TButton;
edtKey: TEdit;
btnInhalt: TButton;
edtInhalt: TEdit;
lblKey: TLabel;
lblValue: TLabel;
btnpostleitzahl: TButton;
procedure btn1Click(Sender: TObject);
procedure btnKeyClick(Sender: TObject);
procedure btnInhaltClick(Sender: TObject);
procedure btnpostleitzahlClick(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
type
TPair<TKey,TValue> =
class // TKey. TValue type parameters
FKey: TKey;
FValue: TValue;
end;
type
TSIPair = TPair<
String,Integer>;
// declares instantiated type
TSSPair = TPair<
String,
String>;
// declares with other data types
TISPair = TPair<Integer,
String>;
TIIPair = TPair<Integer,Integer>;
var
Form1: TForm1;
implementation
{$R *.dfm}
{ TPair<TKey, TValue> }
procedure TForm1.btn1Click(Sender: TObject);
begin
close;
end;
procedure TForm1.btnKeyClick(Sender: TObject);
var Key: TPair<
string,integer>;
TSS: TSSPair;
//typ parameter zuweisen bsp. string oder integer
begin //string zugewiesen
Key:=TPair<
string,integer>.create;
try
Key.FKey:=edtKey.Text;
lblKey.caption:=Key.FKey;
TSS:=TSsPair.create;
//string zugewiesen
TSS.FValue:='
Dies ist ein Test';
ShowMessage(TSS.FValue);
//ShowMessage(Key.Key);
finally
freeandNil(Key);
FreeAndNil(TSS);
end;
end;
procedure TForm1.btnInhaltClick(Sender: TObject);
var Inhalt: TPair<
string,integer>;
//integer zugewiesen
TSI:TSIPair;
begin
Inhalt:=TPair<
string,integer>.create;
try
Inhalt.FValue:=strtoint(edtInhalt.text);
lblValue.caption:=inttostr(Inhalt.FValue);
TSI:=TSIPair.create;
//integer zugewiesen
TSI.FValue:=523;
ShowMessage(inttostr(TSI.FValue));
//ShowMessage(inttostr(Inhalt.Value));
finally
FreeAndNil(Inhalt);
FreeAndNil(TSI);
end;
end;
{ TDictionary<TKey, TValue> }
procedure postleitzahlen;
type
TPostleitzahl =
string;
//vorher integer aber führende Null!!!
TOrtsName =
String;
var
postleitzahlen: TDictionary<TPostleitzahl, TOrtsName>;
begin
try
postleitzahlen := TDictionary<TPostleitzahl, TOrtsName>.Create();
postleitzahlen.Add('
53639', '
Königswinter');
postleitzahlen.Add('
53117', '
Bonn1');
postleitzahlen.Add('
53111', '
Bonn');
ShowMessage('
Die Postleitzahl für 53639 ist');
ShowMessage( postleitzahlen['
53639']);
finally
FreeAndNil(Postleitzahlen);
end;
end;
procedure TForm1.btnpostleitzahlClick(Sender: TObject);
begin
postleitzahlen;
end;
end.