API: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

Konstruktor für die Klasse TJSONString.

System.JSON.TJSONNumber.Create erbt von System.JSON.TJSONString.Create. Der folgende Inhalt bezieht sich auf System.JSON.TJSONString.Create.

Konstruktor für die Klasse TJSONString.

Die implizite Version des Create-Konstruktors erzeugt einen JSON-Null-String. Es werden keine weiteren Änderungen dieses Strings unterstützt.

Die andere Version des Create-Konstruktors erzeugt den im Argument Value angegebenen JSON-String. Dieses Argument darf nicht Null sein.

Siehe auch