System.JSON.TJSONNumber.Create

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

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() { }

プロパティ

種類 可視性 ソース ユニット
constructor public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONNumber

説明

TJSONNumber クラスのインスタンスを作成します。

TJSONNumber クラスのインスタンスを作成するには、Create を呼び出します。

Value パラメータとしてデータを与えると、その値を使用して JSON 数値が初期化されます。