System.JSON.TJSONString.Create

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

Delphi

constructor Create; overload; override;
constructor Create(const Value: string); overload;

C++

__fastcall virtual TJSONString()/* overload */;
__fastcall TJSONString(const System::UnicodeString Value)/* overload */;

プロパティ

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

説明

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

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

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

関連項目