Just for curiosity: why this code gives an AV instead of throwing an exception?

procedure TForm1.Button1Click(Sender: TObject);
var fs: TFormatSettings;
begin
  strtodate('2011-01-01', fs);
end;
link|improve this question

5  
An access violation is an exception. – Rob Kennedy Feb 24 at 14:16
feedback

1 Answer

up vote 11 down vote accepted

Your code raises an exception because fs is not initialized.

  uses SysUtis, Windows;

  procedure TForm1.Button1Click(Sender: TObject);
  var fs: TFormatSettings;
  begin
    GetLocaleFormatSettings(GetSystemDefaultLCID, fs); // what is your short-date format?
    strtodate('2011-01-01', fs);
  end;
link|improve this answer
feel quite dumb now, just didn't expect that record type can lead to Access Violation – JustMe Feb 24 at 9:39
3  
Local variables are not initialized at all. They contains random data and using that invalid data will cause AV. – DiGi Feb 24 at 9:59
3  
Local string variables are initialized, Digi, and TFormatSettings includes fields of that type. They will be initialized. In Delphi 2005, and probably other versions, StrToDate calls TryStrToDate, which calls ScanDate, and ScanDate reads FormatSettings.ShortDateFormat[1] without checking whether 1 a valid index for that string. The error would have looked different if the RTL were compiled with range checking enabled. – Rob Kennedy Feb 24 at 14:23
In the general, managed types are initialized to whatever applicable null values. – user539484 Feb 24 at 17:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.