JSON 의 SuperObject (13): SO 와 SA 함수 에 대하 여

2056 단어
SuperObject 의 공용 함수 SO 를 통 해 ISuperObject 인 터 페 이 스 를 실현 하 는 것 이 매우 편리 합 니 다.
앞에서 문자열 인 자 를 주 었 습 니 다. 인 자 는 모든 유형, 심지어 상수 배열 일 수 있 습 니 다.
SA 와 SO 는 모두 ISuper Object 로 돌아 갑 니 다.
SO 는 stArray 형식의 ISuperObject 를 만 들 수 있 지만 SA 는 stArray 형식의 ISuperObject 만 생 성 합 니 다.
SA 의 매개 변수 도 상수 배열 일 수 밖 에 없습니다.
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses SuperObject, TypInfo;

procedure TForm1.Button1Click(Sender: TObject);
var
  jo: ISuperObject;
begin
  jo := SO(['A',1, 'B',2.5, 'C','xyz', 'D',True]);
  ShowMessage(jo.AsJSon); // {"D":true,"C":"xyz","B":2.5,"A":1}
  {     }
  ShowMessage(GetEnumName(TypeInfo(TSuperType), Ord(jo.DataType))); // stObject

  jo := SO(3.14);
  ShowMessage(jo.AsJSon); // 3.14
  {     }
  ShowMessage(GetEnumName(TypeInfo(TSuperType), Ord(jo.DataType))); // stDouble

  jo := SA(['A',1, 'B',2.5, 'C','xyz', 'D',True]);
  ShowMessage(jo.AsJSon);
  {     }
  ShowMessage(GetEnumName(TypeInfo(TSuperType), Ord(jo.DataType))); // stArray
end;

//SA    
procedure TForm1.Button2Click(Sender: TObject);
var
  jo,ja: ISuperObject;
begin
  ja := SA(['x','y','z']);
  
  jo := SO('{A:1, B:2}');
  jo['B'] := ja;

  ShowMessage(jo.AsJSon); // {"B":["x","y","z"],"A":1}
end;

end.

 
 
 
 
 

 

 
  

좋은 웹페이지 즐겨찾기