我目前正在使用此代码,但未列出任何内容。我缺少什么?
program ListAttrs;
{$APPTYPE CONSOLE}
uses
Rtti,
SysUtils;
type
TPerson = class
private
FName: String;
FAge: Integer;
public
[NonEmptyString('Must provide a Name')]
property Name : String read FName write FName;
[MinimumInteger(18, 'Must be at least 18 years old')]
[MaximumInteger(65, 'Must be no older than 65 years')]
property Age : Integer read FAge write FAge;
end;
procedure test;
var
ctx : TRttiContext;
lType : TRttiType;
lAttribute: TCustomAttribute;
lProperty : TRttiProperty;
begin
ctx := TRttiContext.Create;
lType := ctx.GetType(TPerson);
for lProperty in lType.GetProperties do
for lAttribute in lProperty.GetAttributes do
Writeln(lAttribute.ToString);
end;
begin
try
Test;
Readln;
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.
答案 0 :(得分:5)
看看你的编译器警告。当我构建这个时,我看到:
[DCC Warning] ListAttrs.dpr(15): W1025 Unsupported language feature: 'custom attribute'
[DCC Warning] ListAttrs.dpr(17): W1025 Unsupported language feature: 'custom attribute'
[DCC Warning] ListAttrs.dpr(18): W1025 Unsupported language feature: 'custom attribute'
这是由于历史怪癖。 Delphi for .NET编译器支持属性,它们在VCL中广泛用于各种.NET事物。 Delphi for Win32编译器必须能够读取它们并忽略它们。
然后Delphi 2010问世,Delphi Win32突然支持属性。但是Delphi中并不存在所有这些.NET属性。他们让编译器只发出警告然后忽略它们,而不是全部根除它们。 (另外,我相信我听到Emb。有人说Delphi for .NET仍然在内部用于任何原因。)
作为一个副作用,在你的类中放置一个实际上不存在的属性是完全有效的。它只会被编译器忽略,并且不会生成RTTI。