2012-03-23 3 views

答えて

1

これは(コード内の構文のコメントを参照してください)作品:

Type 
    TRec = record 
    s: string; 
    p: procedure; // As Ken pointed out, better define a procedural type: 
        // type TMyProc = procedure; and declare p : TMyProc; 
    end; 

procedure run; forward; // The forward is needed here. 
         // If the procedure run was declared in the interface 
         // section of a unit, the forward directive should not be here. 

Const 
    Rec: TRec = (s:''; p:run); // The const record is predefined by the compiler. 

procedure run; 
begin 
    WriteLn('Test'); 
end; 

begin 
    Rec.p; // Rec.run will not work since run is not a declared member of TRec. 
      // The array index (Rec[0]) is not applicable here since Rec is not declared as an array. 
    ReadLn; 
end. 
+0

これは良いですが、それは頼まれたものではありません。ポスターは、 'Rec.p'に' procedure run'を割り当ててから 'Rec.run'を使うことができるかどうかを尋ねました。あなたのコードは' Rec.p 'を使って示しています。 。 –

+0

@KenWhite、そうかもしれませんが、私の例では、constレコードRecを使ってOPが実行プロシージャを呼び出せるようになります。 –

+0

そうです、それは尋ねられたものではありません。「後で実行することができます:Rec [0] .run;」です。これは不可能です*。 :)問題はありません - OPはあなたのソリューションが動作すると思うようです。 (私の答えを削除し、あなたのものを上書きする) –

関連する問題