Which variables are initialized when in Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T03:02:00Zhttp://stackoverflow.com/feeds/question/861045http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/861045/which-variables-are-initialized-when-in-delphi5Which variables are initialized when in Delphi?Jim McKeeth2009-05-14T00:21:07Z2009-05-19T07:29:27Z
<p>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. </p>
<p>I always get <strong>0</strong> from <em>Integers</em> and <strong>false</strong> from <em>Booleans</em> for all record members. </p>
<p>I tried turning various compiler options (debugging, optimizations, etc.) on and off, but there was no difference. All my record members are being initialized.</p>
<p>What am I missing? I am on Delphi 2009 Update 2. </p>
<pre><code>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.
</code></pre>
<p><strong>Output:</strong></p>
<pre>
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 . . . .
</pre>
http://stackoverflow.com/questions/861045/which-variables-are-initialized-when-in-delphi/861174#8611741Answer by Cesar Romero for Which variables are initialized when in Delphi?Cesar Romero2009-05-14T01:31:29Z2009-05-14T01:31:29Z<p>I have a similar situation, and thought the same, but when I add other variables used before the record, the values become garbage, so before I use my record I had to initialize using FillChar(MyRecord, SizeOf(MyRecord), #0).</p>
http://stackoverflow.com/questions/861045/which-variables-are-initialized-when-in-delphi/861178#86117823Answer by Barry Kelly for Which variables are initialized when in Delphi?Barry Kelly2009-05-14T01:32:44Z2009-05-19T07:29:27Z<p>Global variables are zero-initialized. Variables used in the context of the main <code>begin</code>..<code>end</code> block of a program can be a special case; sometimes they are treated as local variables, particularly <code>for</code>-loop indexers. However, in your example, <code>r</code> is a global variable and allocated from the .bss section of the executable, which the Windows loader ensures is zero-filled.</p>
<p>Local variables are initialized as if they were passed to the <code>Initialize</code> routine. The <code>Initialize</code> routine uses runtime type-info (RTTI) to zero-out fields (recursively - if a field is of an array or record type) and arrays (recursively - if the element type is an array or a record) of a managed type, where a managed type is one of:</p>
<ul>
<li>AnsiString</li>
<li>UnicodeString</li>
<li>WideString</li>
<li>an interface type</li>
<li>dynamic array type</li>
<li>Variant</li>
</ul>
<p>Allocations from the heap are not necessarily initialized; it depends on what mechanism was used to allocate memory. Allocations as part of instance object data are zero-filled by <code>TObject.InitInstance</code>. Allocations from <code>AllocMem</code> are zero-filled, while <code>GetMem</code> allocations are not zero-filled. Allocations from <code>New</code> are initialized as if they were passed to <code>Initialize</code>.</p>
http://stackoverflow.com/questions/861045/which-variables-are-initialized-when-in-delphi/862505#8625051Answer by Frederik Slijkerman for Which variables are initialized when in Delphi?Frederik Slijkerman2009-05-14T09:56:26Z2009-05-14T09:56:26Z<p>Note that in the example code you provided, the record is actually a global variable, so it will be completely initialized. If you move all that code to a function, it will be a local variable, and so, per the rules given by Barry Kelly, only its string field will be initialized (to '').</p>