Constructing an Object from a Class Reference - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:23:40Z http://stackoverflow.com/feeds/question/465492 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/465492/constructing-an-object-from-a-class-reference 1 Constructing an Object from a Class Reference Graza 2009-01-21T14:23:29Z 2009-01-23T20:57:41Z <p>I have a method which constructs an object, calls an Execute method, and frees the object. The type of object is determined by a TClass descendant passed into the method. Note this is Delphi for Win32 I am talking about, not .NET.</p> <p><em>Edit: I should point out that this is Delphi 2006, as it has been noted in answers below that in future versions the NewInstance call may not be required. In my case, however, it is required. As such, I would imagine the answer to my question (is it safe? and does CreateForm() have a potential leak) would need to be answered on the basis that this is Delphi 2006</em></p> <p><em>Edit#2: seems that the solutions given for D2007 &amp; D2009 do in fact work for D2006. I must have picked up the "NewInstance" habit from an earlier version of Delphi...</em></p> <pre><code>function TPageClassFactory.TryExecute(ScrnClass: TCustomPageClass): boolean; //TCustomPageClass = class of TCustomPage var ScrnObj: TCustomPage; //TCustomPage defines an abstract Execute() method begin Result := FALSE; //default ScrnObj := TCustomPage(ScrnClass.NewInstance); //instantiate try ScrnObj.Create(Self); //NB: Create() and Execute() are *virtual* methods ScrnObj.Execute; finally FreeAndNil(ScrnObj); end; Result := TRUE; end; </code></pre> <p>What I want to know is whether this is safe - what will happen here if Create() raises an exception?</p> <p>Looking at a similar example, from Forms.pas.TApplication.CreateForm(), a different approach has been taken to exception handling (I've cut out the irrelevant bits below):</p> <pre><code>procedure TApplication.CreateForm(InstanceClass: TComponentClass; var Reference); var Instance: TComponent; begin Instance := TComponent(InstanceClass.NewInstance); TComponent(Reference) := Instance; try Instance.Create(Self); except TComponent(Reference) := nil; raise; end; end; </code></pre> <p>In the Forms.pas method, does this mean that memory is leaked when an exception occurs in the Create() method? My understanding was that InstanceClass.NewInstance allocated memory, thus in this case the memory is not being deallocated/released/freed?</p> http://stackoverflow.com/questions/465492/constructing-an-object-from-a-class-reference/465521#465521 10 Answer by Gamecat for Constructing an Object from a Class Reference Gamecat 2009-01-21T14:30:45Z 2009-01-21T14:37:01Z <p>You should put the create out of the try finally block.</p> <p>But a better solution is:</p> <pre><code>type TMyClass = class () public constructor Create(...); virtual; fucntion Execute: Boolean; virtual; end; TMyClassClass = class of TMyClass; procedure CreateExecute(const AClass: TMyClassClass): Boolean; var theclass : TMyClass; begin theclass := AClass.Create; try Result := theclass.Execute; finally theclass.Free; end; end; </code></pre> http://stackoverflow.com/questions/465492/constructing-an-object-from-a-class-reference/465607#465607 1 Answer by PetriW for Constructing an Object from a Class Reference PetriW 2009-01-21T14:50:55Z 2009-01-23T20:57:41Z <p><strong>Edit:</strong> </p> <p>Didn't fully remember how it was in old delphi versions but apparently this should work in all based on other replies.</p> <p>Note, Create has been calling Destroy on fail for as long as I can remember. It shouldn't be after I think.</p> <p>Code would be:</p> <pre><code>procedure TPageClassFactory.TryExecute(ScrnClass: TCustomPageClass); var ScrnObj: TCustomPage; begin ScrnObj := ScrnClass.Create(Self); // Exception here calls the destructor try ScrnObj.Execute; // Exception here means you need to free manually finally FreeAndNil(ScrnObj); // Be free! end; end; </code></pre> <p>I removed the result returned by the original function as it can never be false, only "unassigned" (exception) or true. You could after all get an exception before you assign result to false. ;) </p> http://stackoverflow.com/questions/465492/constructing-an-object-from-a-class-reference/465650#465650 1 Answer by mghie for Constructing an Object from a Class Reference mghie 2009-01-21T15:02:04Z 2009-01-21T15:31:53Z <p>Re your question about memory being leaked when Create() raises an exception: You should try it out for yourself. I just did on Delphi 2007, and with your code FastMM4 shows an error dialog about the attempt to call a virtual method on an already freed object, namely Destroy(). So the exception in Create will already lead to the destructor being called and the memory being freed, so your code is actually wrong. Stick to the idiom used in the <a href="http://stackoverflow.com/questions/465492/constructing-an-object-from-a-class-reference#465521">answer by Gamecat</a>, and everything should work.</p> <p><strong>Edit:</strong></p> <p>I just tried on Delphi 4, and the behaviour is the same. Test code:</p> <pre><code>type TCrashComp = class(TComponent) public constructor Create(AOwner: TComponent); override; destructor Destroy; override; end; constructor TCrashComp.Create(AOwner: TComponent); begin inherited Create(AOwner); raise Exception.Create('foo'); end; destructor TCrashComp.Destroy; begin Beep; inherited Destroy; end; procedure TForm1.Button1Click(Sender: TObject); var C: TComponent; begin C := TComponent(TCrashComp.NewInstance); try C.Create(nil); C.Tag := 42; finally C.Free; end; end; </code></pre> <p>With FastMM4 the Free in the finally block gives the same error, because C has been freed already. On application shutdown the exception and the exception string are reported as memory leaks, though. This is however not a problem with the code, but with the runtime.</p> http://stackoverflow.com/questions/465492/constructing-an-object-from-a-class-reference/468245#468245 3 Answer by Rob Kennedy for Constructing an Object from a Class Reference Rob Kennedy 2009-01-22T06:49:46Z 2009-01-22T06:49:46Z <p>There have been a few questions raised in comments that I'd like to clarify.</p> <p>First is the continued myth that the constructor needs to be virtual. It does <strong>not</strong>. Consider this example:</p> <pre><code>type TBase = class constructor Create(x: Integer); end; TDerived = class(TBase) field: string; end; TMetaclass = class of TBase; var instance: TBase; desiredClass: TMetaclass; begin desiredClass := TDerived; instance := desiredClass.Create(23); Assert(instance.ClassName = 'TDerived'); Assert(instance is TDerived); Assert(instance.field = ''); end; </code></pre> <p>The created object will be a full-fledged instance of class <code>TDerived</code>. Enough memory will have been allocated to hold the string field, which didn't exist in the base class.</p> <p>There are two conditions that must be true before you'll need a virtual constructor:</p> <ol> <li>The constructor will be called virtually. That is, you'll have a variable of the base-class metaclass type, and it will hold a value of a derived class, and you will call a constructor on that variable. That's demonstrated in the code above. If all your constructor calls are directly on the class names themselves (i.e., <code>TDerived.Create(23)</code>), then there's nothing to be gained from virtual methods.</li> <li>A subclass of the base class will need to override the constructor to provide class-specific initialization. If all descendants use the same construction, and only vary in other methods, ten there's no need to make the constructor virtual.</li> </ol> <p>What's important to realize here is that those two rules are no different from the factors that determine when the make any other method virtual. Constructors aren't special in that regard.</p> <p>The constructor knows which class to construct based not on the class where the constructor was defined, but on the class the constructor was called on, and that class is always passed as a hidden first parameter for every constructor call.</p> <p><hr /></p> <p>Second is the issue of whether <code>NewInstance</code> should be called in place of or in addition to the constructor. I think other comments have already established that it has nothing to do with compatibility with older Delphi versions. <em>All</em> versions have supported calling constructors on class references without the need for <code>NewInstace</code>. Rather, the confusion comes from looking at <code>TApplication.CreateForm</code> and treating it as an example of how things should be done. That's a mistake.</p> <p><code>CreateForm</code> calls <code>NewInstance</code> before calling the constructor because <code>CreateForm</code>'s primary reason for existence is to ensure that the global form variable that the IDE declares is valid during the form's own event handlers, including <code>OnCreate</code>, which runs as part of the constructor. If the <code>CreateForm</code> method had done the usual construction pattern, then the global form variable would not yet have had a valid value. Here's what you might have expected to see:</p> <pre><code>TComponent(Reference) := InstanceClass.Create(Application); </code></pre> <p>Simple and obvious, but that won't work. <code>Reference</code> won't get assigned a value until <em>after</em> the constructor returns, which is long after the form has triggered some events. If you follow good programming practice and never refer to that variable from within the form class itself, then you'll never notice. But if you follow the documentation's instructions, which are written for an inexperienced audience, then you <em>will</em> refer to the global form variable from within the form's own methods, so the <code>CreateForm</code> method does what it can to make sure it's assigned in time.</p> <p>To do that, it uses a two-step construction technique. First, allocate memory and assign the reference to the global variable:</p> <pre><code>Instance := TComponent(InstanceClass.NewInstance); TComponent(Reference) := Instance; </code></pre> <p>Next, call the constructor on the instance, passing the <code>TApplication</code> object as the owner:</p> <pre><code>Instance.Create(Self); </code></pre> <p><a href="http://www.cs.wisc.edu/~rkennedy/createform" rel="nofollow">It's my opinion</a> that <code>CreateForm</code> should be called exactly once in any program. I'd prefer zero times, but it has the side effect of defining <code>Application.MainForm</code>, which is important for other aspects of a Delphi program.</p> <p><hr /></p> <p>Third is the notion that it's unusual for an object to call a constructor on itself.</p> <p>In fact, this happens <em>all the time</em>. Every time you call an inherited constructor, you're calling a constructor on an object that already exists. The inherited constructor is not allocating a new object. Likewise, the VCL has some examples of non-inherited calls of constructors. <code>TCustomForm.Create</code> delegates much of its construction tasks to its <code>CreateNew</code> constructor.</p>