System.TypInfo.TVmtMethodEntry

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TVmtMethodEntry = packed record
    Len: Word;
    CodeAddress: Pointer;
    Name: TSymbolName;
    function NameFld: TTypeInfoFieldAccessor; inline;
   {Tail: TVmtMethodEntryTail;} // only exists if Len indicates data here
    function Tail: PVmtMethodEntryTail; inline;
  end;

C++

struct DECLSPEC_DRECORD TVmtMethodEntry
{
public:
    System::Word Len;
    void *CodeAddress;
    TSymbolName Name;
    TTypeInfoFieldAccessor __fastcall NameFld();
    PVmtMethodEntryTail __fastcall Tail();
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Beschreibung

TVmtMethodEntry wird intern zum Speichern von Methoden-RTTI-Informationen verwendet.

TVmtMethodEntry-Strukturen werden automatisch vom Delphi-Compiler für alle Instanzmethoden eingefügt, die für die Ausgabe von erweiterten RTTI-Informationen gekennzeichnet sind.

Verwenden Sie TVmtMethodEntry nicht direkt, sondern greifen Sie mit der Klasse TRttiMethod auf die einer Delphi-Klasse zugeordneten Methodeninformationen zu.

Siehe auch