show/hide this revision's text 4 deleted 146 characters in body

So I always heard that class fields (heap based) were initialized, but stack based variables were not. I also heard that record members (also being stack based) were also not initialized. The compiler warns that local variables are not initialized ([DCC Warning] W1036 Variable 'x' might not have been initialized), but does not warn for record members. So I decided to run a test.

I always get 0 from Integers and false from Booleans for all record members.

I tried turning various compiler options (debugging, optimizations, etc.) on and off, but there was no difference. All my record members are being initialized.

What am I missing? I am on Delphi 2009 Update 2.

program TestInitialization;

{$APPTYPE CONSOLE}

uses
  SysUtils;

type
  TR = Record
  Public
    i1, i2, i3, i4, i5: Integer;
    a: array[0..10] of Integer;
    b1, b2, b3, b4, b5: Boolean;
    s: String;
  End;

var
  r: TR;
  x: Integer;

begin
  try
    WriteLn('Testing record. . . .');
    WriteLn('i1 ',R.i1);
    WriteLn('i2 ',R.i2);
    WriteLn('i3 ',R.i3);
    WriteLn('i4 ',R.i4);
    WriteLn('i5 ',R.i5);

    Writeln('S ',R.s);

    Writeln('Booleans: ', R.b1, ' ', R.b2, ' ', R.b3, ' ', R.b4, ' ', R.b5);

    Writeln('Array ');
    for x := 0 to 10 do
      Write(R.a[x], ' ');
    WriteLn;

    WriteLn('Done . . . .');
  except
    on E:Exception do
      Writeln(E.Classname, ': ', E.Message);
  end;
  ReadLn;
end.

Output:

Testing local . . . .
i1 0
i2 0
i3 0
i4 0
i5 0
S
Booleans: FALSE FALSE FALSE FALSE FALSE
Array
0 0 0 0 0 0 0 0 0 0 0
Done local . .. .
Testing record. . . .
i1 0
i2 0
i3 0
i4 0
i5 0
S
Booleans: FALSE FALSE FALSE FALSE FALSE
Array
0 0 0 0 0 0 0 0 0 0 0
Done . . . .

show/hide this revision's text 3 added 17 characters in body

So I always heard that class fields (heap based) were initialized, but local stack based variables were not. I also heard that record members (also being stack based) were also not initialized. I decided to do a test and was surprised that even though the The compiler warns me that my local variables are not initialized ([DCC Warning] W1036 Variable 'x' might not have been initialized) initialized), but does not warn for record members. So I still decided to run a test.

I always get 0 from Integers and false from Booleans for all record members.

I tried turning various compiler options (debugging, optimizations, etc.) on and off, but there was no difference. All my stack based variables (local and record members ) were are being initialized.

What am I missing? I am on Delphi 2009 Update 2.

program TestInitialization;

{$APPTYPE CONSOLE}

uses
  SysUtils;

type
  TR = Record
  Public
    i1, i2, i3, i4, i5: Integer;
    a: array[0..10] of Integer;
    b1, b2, b3, b4, b5: Boolean;
    s: String;
  End;

var
  r: TR;
  x: Integer;
  i1, i2, i3, i4, i5: Integer;
  a: array[0..10] of Integer;
  b1, b2, b3, b4, b5: Boolean;

s: String;
begin
  try
    WriteLn('Testing local . . . .');
    WriteLn('i1 ',i1);
    WriteLn('i2 ',i2);
    WriteLn('i3 ',i3);
    WriteLn('i4 ',i4);
    WriteLn('i5 ',i5);

    Writeln('S ',s);

    Writeln('Booleans: ', b1, ' ', b2, ' ', b3, ' ', b4, ' ', b5);

    Writeln('Array ');
    for x := 0 to 10 do
      Write(a[x], ' ');
    WriteLn;
    Writeln('Done local . .. . ');
    WriteLn('Testing record. . . .');
    WriteLn('i1 ',R.i1);
    WriteLn('i2 ',R.i2);
    WriteLn('i3 ',R.i3);
    WriteLn('i4 ',R.i4);
    WriteLn('i5 ',R.i5);

    Writeln('S ',R.s);

    Writeln('Booleans: ', R.b1, ' ', R.b2, ' ', R.b3, ' ', R.b4, ' ', R.b5);

    Writeln('Array ');
    for x := 0 to 10 do
      Write(R.a[x], ' ');
    WriteLn;

    WriteLn('Done . . . .');
  except
    on E:Exception do
      Writeln(E.Classname, ': ', E.Message);
  end;
  ReadLn;
end.

Output:

Testing local . . . .
i1 0
i2 0
i3 0
i4 0
i5 0
S
Booleans: FALSE FALSE FALSE FALSE FALSE
Array
0 0 0 0 0 0 0 0 0 0 0
Done local . .. .
Testing record. . . .
i1 0
i2 0
i3 0
i4 0
i5 0
S
Booleans: FALSE FALSE FALSE FALSE FALSE
Array
0 0 0 0 0 0 0 0 0 0 0
Done . . . .

show/hide this revision's text 2 added 1802 characters in body

Which local variables are initialized when in Delphi?

program TestInitialization;{$APPTYPE CONSOLE}  SysUtils;  TR = Record    i1, i2, i3, i4, i5: Integer;    a: array[0..10] of Integer;    b1, b2, b3, b4, b5: Boolean;    s: String;  End;  r: TR;  x: Integer;  i1, i2, i3, i4, i5: Integer;  a: array[0..10] of Integer;  b1, b2, b3, b4, b5: Boolean;  s: String;    WriteLn('Testing local . . . .');    WriteLn('i1 ',i1);    WriteLn('i2 ',i2);    WriteLn('i3 ',i3);    WriteLn('i4 ',i4);    WriteLn('i5 ',i5);    Writeln('S ',s);    Writeln('Booleans: ', b1, ' ', b2, ' ', b3, ' ', b4, ' ', b5);    Writeln('Array ');    for x := 0 to 10 do      Write(a[x], ' ');    WriteLn;    Writeln('Done local . .. . ');    WriteLn('Testing record. . . .');    WriteLn('i1 ',R.i1);    WriteLn('i2 ',R.i2);    WriteLn('i3 ',R.i3);    WriteLn('i4 ',R.i4);    WriteLn('i5 ',R.i5);    Writeln('S ',R.s);    Writeln('Booleans: ', R.b1, ' ', R.b2, ' ', R.b3, ' ', R.b4, ' ', R.b5);    Writeln('Array ');    for x := 0 to 10 do      Write(R.a[x], ' ');    WriteLn;    WriteLn('Done . . . .');    on E:Exception do      Writeln(E.Classname, ': ', E.Message);  end;  ReadLn;

Output:

Testing local . . . .Booleans: FALSE FALSE FALSE FALSE FALSE0 0 0 0 0 0 0 0 0 0 0Done local . .. .Testing record. . . .Booleans: FALSE FALSE FALSE FALSE FALSE0 0 0 0 0 0 0 0 0 0 0Done . . . .
show/hide this revision's text 1