IDE Window: Local Variables/de

From Lazarus wiki
Jump to navigationJump to search

Deutsch (de) English (en) français (fr) русский (ru)

Wichtig

Sie müssen zunächst einen Debugger einrichten und das zu debuggende Projekt starten. Nur dann ist dieses Fenster hilfreich.

Lokale Variablen

Locals.png

Das ist die Liste der lokalen Variablen und ihrer derzeitigen Werte in der aktuellen Funktion/Prozedur.

Angezeigte Daten

Name
The mangled name of the variable. Normally the compiler converts pascal identifier to uppercase. You will see local variables only if the procedure was compiled with debugging information.
Wert
Der aktuelle Wert der lokalen Variable.

Anmerkung: Die Werte werden in einer sehr einfachen Form angezeigt, z.B. Objekte werden als Zeiger anstatt einer Struktur angezeigt. Sie erhalten möglicherweise weitere Informationen durch Hinzufügung einer Variable zur watch list

Scope (Stackframe, Thread, History)

The values are evaluated according to the scope set in the Thread and Stack dialog. Default is the current Thread and top stack frame. Both (Stack and Frame) dialog offer to change the "current" Frame/Thread. The watch window will follow this selection.

It is also possible to select previously displayed values, using the History dialog.

Siehe auch