程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 如何把類中的方法做參數

如何把類中的方法做參數

編輯:Delphi

unit Unit1; 
 
interface 
 
uses 
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 
 Dialogs; 
 
type 
 TForm1 = class(TForm) 
  procedure FormCreate(Sender: TObject); 
 public 
  function MySqr(const num: Integer): Integer; {這是類中的一個方法, 准備做參數使用}  
 end; 
 
var 
 Form1: TForm1; 
 
implementation 
 
{$R *.dfm} 
 
Type 
 TFun = function(const num: Integer): Integer of object; {定義的類型參數同上} 
 
{這是上面那個方法的實現} 
function TForm1.MySqr(const num: Integer): Integer; 
begin 
 Result := num * num; 
end; 
 
{把上面的方法做參數} 
procedure MyProc(var x: Integer; fun: TFun); 
begin 
 x := fun(x); 
end; 
 
{測試} 
procedure TForm1.FormCreate(Sender: TObject); 
var 
 n: Integer; 
begin 
 n := 9; 
 MyProc(n, MySqr); 
 ShowMessage(IntToStr(n)); {81} 
end; 
 
end. 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved