TTest = Class
public
    constructor Create();
    destructor Destroy; override;  
    Function BuderAA():TStrings;
end;Function TTest.BuderAA():TStrings
var
  i:Integer;
  AA:TStrings;
begin 
  AA:= TStringList.Create;
  for i:= 0 to 10 do 
  begin
    AA.Add(IntToStr(i));  
  end;
  result;
end;在使用的时候我不释放AA:TStrings
TTest会自动释放AA:TStrings吗?