我希望能够使用TValue将数据存储在TList<>中。喜欢在:
type
TXmlBuilder = class
type
TXmlAttribute = class
Name: String;
Value: TValue; // TValue comes from Rtti
end;
TXmlNode = class
Name: String;
Parent: TXmlNode;
Value: TXmlNode;
Attributes: TList<TXmlAttribute>;
Nodes: TList<TXmlNode>;
function AsString(Indent: Integer): String;
end;
...
public
...
function N(const Name: String): TXmlBuilder;
function V(const Value: String): TXmlBuilder;
function A(const Name: String; Value: TValue): TXmlBuilder; overload;
function A<T>(const Name: String; Value: T): TXmlBuilder; overload;
...
end;
implementation
function TXmlBuilder.A(const Name: String; Value: TValue): TXmlBuilder;
var
A: TXmlAttribute;
begin
A := TXmlAttribute.Create;
A.Name := Name;
A.Value := Value;
FCurrent.Attributes.Add(A);
Result := Self;
end;
function TXmlBuilder.A<T>(const Name: String; Value: T): TXmlBuilder;
var
V: TValue;
begin
V := TValue.From<T>(Value);
A(Name, V);
end;
稍后,在主程序中,我使用我的“流畅”xml构建器,如下所示:
b := TXmlBuilder.Create('root');
b.A('attribute', 1).A('other_attribute', 2).A<TDateTime>('third_attribute', Now);
在第二次调用时,程序会引发访问冲突异常。
看起来第一个TValue已被“释放”。是否真的可以使用TValue在运行时存储“Variant”数据?
我知道变体存在于Delphi中。我的XML构建器将用于(使用RTTI)将本机delphi对象序列化为XML,因此我将在任何地方使用TValue。
的问候,
- Pierre Yager
答案 0 :(得分:3)
我找到了答案。我的错误。
function TXmlBuilder.A<T>(const Name: String; Value: T): TXmlBuilder;
var
V: TValue;
begin
V := TValue.From<T>(Value);
Result := A(Name, V); // I missed the return value
end;
抱歉; - )