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

説明

TJSONString クラスのコンストラクタ。

System.JSON.TJSONNumber.Create は System.JSON.TJSONString.Create を継承しています。以下の内容はすべて System.JSON.TJSONString.Create を参照しています。

TJSONString クラスのコンストラクタ。

暗黙の Create コンストラクタは、JSON の NULL 文字列を作成します。この文字列に、それ以上の変更を加えることはできません。

その他のバージョンの Create コンストラクタは、Value 引数として与えられた JSON 文字列を作成します。この引数は NULL であってはいけません。

関連項目