为什么我的代码不能编译,而是获取E2506接口部分声明的参数化类型的方法不能使用本地符号

时间:2011-12-02 21:49:49

标签: delphi generics compiler-errors delphi-xe superobject

我正在使用Delphi XE。

以下单元无法使用此错误进行编译:

[DCC Error] GTSJSONSerializer.pas(27): E2506 Method of parameterized type declared 
   in interface section must not use 
   local symbol 'TSuperRttiContext.AsJson<GTSJSONSerializer.TGTSJSONSerializer<T>.T>'

为什么?有解决方法吗?

unit GTSJSONSerializer;

interface

type
   TGTSJSONSerializer<T> = class
     class function SerializeObjectToJSON(const aObject: T): string;
     class function DeserializeJSONToObject(const aJSON: string): T;
   end;

implementation

uses
        SuperObject
      ;

class function TGTSJSONSerializer<T>.SerializeObjectToJSON(const aObject: T): string;
var
  SRC: TSuperRttiContext;
begin
  SRC := TSuperRttiContext.Create;
  try
    Result := SRC.AsJson<T>(aObject).AsString;
  finally
    SRC.Free;
  end;
end;

class function TGTSJSONSerializer<T>.DeserializeJSONToObject(const aJSON: string): T;
var
  LocalSO: ISuperObject;
  SRC: TSuperRttiContext;
begin
  SRC := TSuperRttiContext.Create;
  try
    LocalSO :=  SO(aJSON);
    Result := SRC.AsType<T>(LocalSO);
  finally
    SRC.Free;
  end;
end;

end.

2 个答案:

答案 0 :(得分:4)

来自XE2 DocWiki

  

尝试将字面值分配给泛型数据字段时会发生这种情况。

program E2506;

{$APPTYPE CONSOLE}

uses
  SysUtils;

type
  TRec<T> = record
  public
    class var x: Integer;
    class constructor Create;
  end;

class constructor TRec<T>.Create;
begin
  x := 4; // <-- e2506 Fix: overload the Create method to 
          // take one parameter x and assign it to the x field.
end;

begin
   Writeln('E2506 Method of parameterized type declared' +
           ' in interface section must not use local symbol');
end.

但我不知道它可能反对哪些局部变量;您在SerialObjectToJSON中有一个本地,在DeserializeJSONToObject中有两个。我也不确定基于链接修复确切如何适用于您发布的代码。它可能与TSuperRTTIContext

有关

答案 1 :(得分:1)

我可以使用D2010,DXE和DXE2针对SuperObject版本46编译您的单元。