System.SysUtils.TProc

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

TProc = reference to procedure;
TProc<T> = reference to procedure (Arg1: T);
TProc<T1,T2> = reference to procedure (Arg1: T1; Arg2: T2);
TProc<T1,T2,T3> = reference to procedure (Arg1: T1; Arg2: T2; Arg3: T3);
TProc<T1,T2,T3,T4> = reference to procedure (Arg1: T1; Arg2: T2; Arg3: T3; Arg4: T4);

C++

__interface TProc : public System::IInterface
template<typename T> __interface TProc__1 : public System::IInterface
template<typename T1, typename T2> __interface TProc__2 : public System::IInterface
template<typename T1, typename T2, typename T3> __interface TProc__3 : public System::IInterface
template<typename T1, typename T2, typename T3, typename T4> __interface TProc__4 : public System::IInterface

プロパティ

種類 可視性 ソース ユニット
anonMethod
class
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

説明

TProc はジェネリック プロシージャの参照を宣言します。

TProc 型はジェネリック プロシージャの参照として使用します。TProc 型にはいくつかの変形があり、それぞれ受理するジェネリック引数の数が異なります。

関連項目

https://docwiki.embarcadero.com/Libraries/Tokyo/j/index.php?title=System.SysUtils.TProc&oldid=158690」から取得