2012年12月12日水曜日

メソッドを名前で呼び出す

前回の続きです。

関数(function)のメソッドポインタが定義できれば、TObjectのMethodAddressを使って
関数名を(文字で)指定してコールすることが可能です。

以下、サンプルソース。

先ずは、【メソッドポインタ経由で呼び出されるクラスのサンプル】

  1. unit Unit2;  
  2.   
  3. interface  
  4.   
  5.   type TMyCalc = class  
  6.   published  
  7.     function Add(a,b : double) : double;  
  8.     function Subtract(a,b : double) : double;  
  9.   end;  
  10.   
  11. implementation  
  12.   
  13. { TMyCalc }  
  14.   
  15. function TMyCalc.Add(a, b: double): double;  
  16. begin  
  17.   Result := a + b;  
  18. end;  
  19.   
  20. function TMyCalc.Subtract(a, b: double): double;  
  21. begin  
  22.   Result := a - b;  
  23. end;  
  24.   
  25. end.  

MethodAddressを使用するためにpublishedを指定してることに注意願います。

次に、【関数名を文字列で指定して処理を呼び出すサンプル】

  1. unit Unit1;  
  2.   
  3. interface  
  4.   
  5. uses  
  6.   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,  
  7.   Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls;  
  8.   
  9. type  
  10.   TForm1 = class(TForm)  
  11.     Button1: TButton;  
  12.     Button2: TButton;  
  13.     LabeledEdit1: TLabeledEdit;  
  14.     LabeledEdit2: TLabeledEdit;  
  15.     StaticText1: TStaticText;  
  16.     StaticText2: TStaticText;  
  17.     procedure OnCalcBtnClick(Sender: TObject);  
  18.   private  
  19.     { Private 宣言 }  
  20.   public  
  21.     { Public 宣言 }  
  22.   end;  
  23.   
  24. var  
  25.   Form1: TForm1;  
  26.   
  27. implementation  
  28.   
  29. {$R *.dfm}  
  30.   
  31. uses Unit2;  
  32.   
  33. type TMyCalcFunc = function(a,b : double) : double of object;  
  34.   
  35. procedure TForm1.OnCalcBtnClick(Sender: TObject);  
  36. var  
  37.   MyCalc     : TMyCalc;  
  38.   MyCalcFunc : TMyCalcFunc;  
  39.   MethodVar : TMethod;  
  40. begin  
  41.   
  42.   MyCalc := TMyCalc.Create;  
  43.   try  
  44.     MethodVar.Data := MyCalc;  
  45.     MethodVar.Code := MyCalc.MethodAddress(TButton(Sender).Caption);  
  46.   
  47.   
  48.     if Assigned(MethodVar.Code) then  
  49.     begin  
  50.       MyCalcFunc := TMyCalcFunc(MethodVar);  
  51.       StaticText2.Caption := FloatToStr(MyCalcFunc(StrToFloat(LabeledEdit1.Text),StrToFloat(LabeledEdit2.Text)));  
  52.     end;  
  53.   finally  
  54.     MyCalc.Free;  
  55.   end;  
  56.   
  57. end;  
  58.   
  59. end.  

ボタンのキャプション名が名前のメソッドが定義されているという前提で、ボタンのキャプションを
使って関数をコールして、結果を求めています。


0 件のコメント: