System.JSON.TJSONNumber.Create

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

constructor Create(const Value: string); overload;
constructor Create(const Value: Double); overload;
constructor Create(const Value: Integer); overload;
constructor Create(const Value: Int64); overload;

C++

__fastcall TJSONNumber(const System::UnicodeString Value)/* overload */;
__fastcall TJSONNumber(const double Value)/* overload */;
__fastcall TJSONNumber(const int Value)/* overload */;
__fastcall TJSONNumber(const __int64 Value)/* overload */;
/* TJSONString.Create */ inline __fastcall virtual TJSONNumber()/* overload */ : TJSONString() { }

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
constructor public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONNumber

Beschreibung

Erzeugt eine Instanz der Klasse TJSONNumber.

Mit Create erstellen Sie eine Instanz der Klasse TJSONNumber.

Falls angegeben, wird die JSON-Zahl mit den Daten im Parameter Value initialisiert.