active questions tagged object-lifetime - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:10:33Z http://stackoverflow.com/feeds/tag/object-lifetime http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935153/del-method-being-called-in-python-when-it-is-not-expected 3 __del__ method being called in python when it is not expected ELee 2009-12-20T07:42:46Z 2009-12-20T21:31:02Z <p>Hello, I am new to python and have been working through the examples in Swaroop CH's "A Byte of Python". I am seeing some behavior with the <code>__del__</code> method that is puzzling me. </p> <p>Basically, if I run the following script (in Python 2.6.2) </p> <pre><code>class Person4: '''Represents a person''' population = 0 def __init__(self, name): '''Initialize the person's data''' self.name = name print 'Initializing %s'% self.name #When the person is created they increase the population Person4.population += 1 def __del__(self): '''I am dying''' print '%s says bye' % self.name Person4.population -= 1 if Person4.population == 0: print 'I am the last one' else: print 'There are still %d left' % Person4.population swaroop = Person4('Swaroop') kaleem = Person4('Kalem') </code></pre> <p>using the Python console (or the Spyder interactive console) I see the following:</p> <blockquote> <blockquote> <blockquote> <p>execfile(u'C:\1_eric\Python\test1.py')<br> Initializing Swaroop<br> Initializing Kalem </p> <p>execfile(u'C:\1_eric\Python\test1.py')<br> Initializing Swaroop<br> Swaroop says bye<br> I am the last one<br> Initializing Kalem<br> Kalem says bye<br> I am the last one </p> </blockquote> </blockquote> </blockquote> <p>Why is the <code>__del__</code> method being called immediately after the <code>__init__</code> on the second run?<br> I am guessing that since the same instance names ('swaroop' and 'kaleem') are being used that it is releasing the original instance and garbage collecting it. But, this seems to be playing havoc with the current population count. </p> <p>What is going on here?<br> What is a good way to avoid this sort of confusion?<br> Avoid the use of <code>__del__</code>? Check for existing instance names before reusing them? ...</p> <p>Thanks, Eric</p> http://stackoverflow.com/questions/1922595/why-is-this-instance-initiated-by-unity-not-a-singleton 0 Why is this instance initiated by Unity not a singleton? boris callens 2009-12-17T15:39:43Z 2009-12-17T16:01:16Z <p>in my asp.net-mvc application I have a statis MvcApplication that calls a static CreateContainer() method.</p> <p>In this method I create my unity ioc container:</p> <pre><code>private static IUnityContainer CreateContainer() { var container = new UnityContainer(); container.RegisterType&lt;IConfigurationService, ConfigFile&gt;(); container.RegisterType&lt;ILoggerService, NlogLoggerService&gt;(); container.RegisterInstance&lt;ISearchService&gt;( new LuceneSearchService( container.Resolve&lt;IConfigurationService&gt;(), container.Resolve&lt;ILoggerService&gt;()), new ContainerControlledLifetimeManager()); } </code></pre> <p>If I understood my sources well, this should give me a singleton LuceneSearchService instance. In my logging however, I can see that my constructor gets hit everytime this instance is requested.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1922206/lifetime-management-in-mvc-turbine 0 Lifetime management in mvc turbine? boris callens 2009-12-17T14:39:02Z 2009-12-17T14:59:32Z <p>How can I manage the lifetime of my services in mvc turbine (using Unity)?</p> <p>I have an ISearchService implementation LuceneSearchService that takes an IConfigurationService and ILoggerService. </p> <p>Currently my searchservice registration looks like this:</p> <pre><code>public class SearchServiceRegistration: IServiceRegistration { public void Register(IServiceLocator locator) { locator.Register&lt;ISearchService, LuceneSearchService&gt;(); } } </code></pre> <p>I would like to keep the responsibility of creating the instance in Turbine, but I want it to be a singleton.</p> <p>Or in other words, how can I define the lifetime?</p> http://stackoverflow.com/questions/1885021/problem-with-storing-com-pointers-in-global-singleton-object 0 Problem with storing COM pointers in global singleton object LeopardSkinPillBoxHat 2009-12-11T00:13:16Z 2009-12-13T21:52:55Z <h3>Background</h3> <p>The application I am working with has several COM DLLs.</p> <p>One of the COM DLLs has a global singleton object, which stores pointers to COM interfaces in other DLLs. Because it is a global singleton object, I have employed the <a href="http://en.wikipedia.org/wiki/Lazy%5Finitialisation" rel="nofollow">lazy initialization</a> idiom because it is possible that the interface I am trying to get a pointer to exists in a DLL which hasn't yet been loaded.</p> <p>(<em>Side-note:</em> This is especially important when registering a single DLL, as the global objects will be constructed within the <code>regsvr32</code> process, and I don't want the DLL to attempt to acquire an interface to another DLL during this process.)</p> <p>For example, my lazy initialization method would do something like this:</p> <pre><code>CComPtr&lt;IMyOtherObject&gt;&amp; CGlobalSingleton:: GetMyOtherObject() { // SNIP: Other code removed for clarity... if (! m_pMyOtherObject) { hr = pUnknown-&gt;QueryInterface(IID_IMyOtherObject, (void**) &amp;m_pMyOtherObject); } return m_pMyOtherObject; } </code></pre> <p><strong>NOTE:</strong> <code>m_pMyOtherObject</code> is a member variable of the <code>CComPtr</code> type.</p> <p>The lazy initialization may not be relevant to my problem here, but I'm including it for completeness.</p> <h3>Problem</h3> <p>What I have noticed is that in some circumstances, I get failed assertions when my application shuts down. However, if I change my code to call <code>QueryInterface()</code> <em>every</em> time I need to access <code>IID_IMyOtherOBject</code> (rather than storing it as a member variable) this prevents the assertions.</p> <p>This appears to me to be a COM object lifetime issue. My hypothesis is that because I am <code>storing</code> a COM pointer, there needs to be some sort of synchronisation between the destruction of the COM interface that I'm pointing to, and my own pointer to it.</p> <p>My understanding of the <code>CComPtr</code> class (which I am using) is that it takes away a lot of the headaches of dealing with lifetime issues (i.e. calling <code>AddRef()</code> and <code>Release()</code>). But it doesn't appear to be working in my case.</p> <p>Can anyone pick what I may be doing wrong?</p> http://stackoverflow.com/questions/1815310/linq-to-sql-datacontext-life-cycle-in-a-wcf-service 0 Linq to Sql DataContext life cycle in a WCF service Ali Kazmi 2009-11-29T11:38:26Z 2009-12-05T14:41:24Z <p>Hi,</p> <p>I have a service exposed via WCF. The service exposes several methods that talk to the database through a Linq to SQL datacontext. The datacontext is bound to the CallContext. All of this is working as it should but I can't figure out the proper place to dispose the Linq to SQL datacontext. Please help.</p> http://stackoverflow.com/questions/1674233/lifetime-management-with-google-guice 2 Lifetime management with Google Guice ripper234 2009-11-04T14:49:04Z 2009-11-05T17:11:21Z <p>Is there a recommended pattern for shutting down / closing objects created with Guice?</p> <p>The lifecycle I'm aiming for is:</p> <ol> <li>Prepare a Guice Module</li> <li>Create an injector</li> <li>Use the injector through your code to obtain objects (<code>injector.getInstance(Foo.class)</code>)</li> <li>...</li> <li>Close any resources held by said objects (file handles, TCP connections, etc...). I want this to be a deterministic step (not "some day when the GC runs").</li> </ol> http://stackoverflow.com/questions/1477028/should-this-c-temporary-binding-to-reference-member-be-illegal 4 Should this C++ temporary binding to reference member be illegal? martin 2009-09-25T12:30:32Z 2009-09-25T22:25:59Z <p>Hello,</p> <p>My question (which will follow after this, sorry about the long intro, the question is down there in <b>bold</b>) is originally inspired by Item 23 in Herb Sutters <i>Exceptional C++</i> where we find something like this: <BR>&lt;snip&gt;</p> <pre> <code> ... int main() { GenericTableAlgorithm a( "Customer", MyWorker() ); a.Process(); } </code> </pre> <p>with </p> <pre> <code> class GenericTableAlgorithm { public: GenericTableAlgorithm( const string& table, GTAClient& worker ); bool Process(); private: struct GenericTableAlgorithmImpl* pimpl_; //implementation }; class GTAClient { ///... virtual bool ProcessRow( const PrimaryKey& ) =0; //... }; class MyWorker : public GTAClient { // ... override Filter() and ProcessRow() to // implement a specific operation ... }; </code> </pre> <p>&lt;/snip&gt;</p> <p>Now, I have the following problems with that code (and no, I in no way doubt Mr. Sutter's prowess as a C++ expert): <LI></p> <ol> <li>The example like that will not work, since GTAClient&amp; worker is a <i>non-const</i> reference which can't take a temporary, but well, it might have been written pre-standard or a typo, whatever, that's not my point.</li> <li>What makes me wonder is what he is going to do with the worker reference, even if Problem 1. is ignored. <BR>Obviously the intention is to have <code>MyWorker</code> used in the NVI of <code>GenericTableAlgorithm</code> accessed by <code>GTAClient</code> (polymorphic) interface; this rules out that the implementation owns a (value)member of type <code>GTAClient</code>, since that would cause slicing etc. value-semantics don't mix well with polymorphism. <BR>It cannot have a data member of type <code>MyWorker</code> either since that class is unknown to <code>GenericTableAlgorithm</code>. <BR>So I conclude it must have been meant to be used via pointer or reference, preserving the original object and polymorphic nature.</li> <li>Since pointers to temporary objects (<code>MyWorker()</code>) are rarely a good idea, i assume the author's plan was to use the extended life-time of temporaries bound to (const) references, and store such a reference in the object <code>pimpl_</code> points to and use it from there. (<i>Note: there is also no clone-member function in GTAClient, which could have made this work; let's not assume there is a RTTI-typeinfo-based Factory lurking in the background.</i>) <BR>And here (finally!) my question sets in:<b>(How) can passing a temporary to to a class' reference member <i>with extended life-time</i> be done legally ?</b> </LI></li> </ol> <p><BR>The standard in §12.2.5(the C++0x version but it's the same in C++, don't know about the chapter number) makes the following exception from lifetime extension: <i>"-A temporary bound to a reference <b>member</b> in a constructor’s ctor-initializer (12.6.2) persists until the constructor exits."</i></p> <p>Therefore the object cannot be used in the call of the client code <i>a.Process();</i> because the referenced temporary from <code>MyWorker()</code> is already dead!</p> <p>Consider now an example of my own crafting that demonstrates the problem (tested on GCC4.2):</p> <pre><code>#include &lt;iostream&gt; using std::cout; using std::endl; struct oogie { ~oogie() { cout &lt;&lt; "~oogie():" &lt;&lt; this &lt;&lt; ":" &lt;&lt; m_i &lt;&lt; endl; } oogie(int i_) : m_i(i_) { cout &lt;&lt; "oogie():" &lt;&lt; this &lt;&lt; ":" &lt;&lt; m_i &lt;&lt; endl; } void call() const { cout &lt;&lt; "call(): " &lt;&lt; this &lt;&lt; ":" &lt;&lt; m_i &lt;&lt; endl; } int m_i; }; oogie func(int i_=100) { return oogie(i_); } struct kangoo { kangoo(const oogie& o_) : m_o(o_) { } const oogie& m_o; }; int main(int c_, char ** v_) { //works as intended const oogie& ref = func(400); //kablewy machine kangoo s(func(1000)); cout &lt;&lt; ref.m_i &lt;&lt; endl; //kangoo's referenced oogie is already gone cout &lt;&lt; s.m_o.m_i &lt;&lt; endl; //OK, ref still alive ref.call(); //call on invalid object s.m_o.call(); return 0; } </code></pre> which produces the output <pre>oogie():0x7fff5fbff780:400 oogie():0x7fff5fbff770:1000 <b>~oogie():0x7fff5fbff770:1000</b> 400 1000 call(): 0x7fff5fbff780:400 call(): 0x7fff5fbff770:1000 ~oogie():0x7fff5fbff780:400 </pre> <p>You can see that in the case of <i>const oogie&amp; ref</i> the immediately bound-to-reference temporary return value of func() has the extended lifetime of said reference (until end of main), so it's OK. <BR> BUT: The 1000-oogie object is already destroyed right after kangoo-s was constructed. The code <i>works</i>, but we are dealing with an undead object here...</p> <p>So to pose the question again: <BR>Firstly, <b>Am I missing something here and the code is correct/legal?</b>. <BR>Secondly, <b>why does GCC give me no warning of this, even with -Wall specified?</b> Should it? Could it?</p> <p>Thanks for your time, <BR>martin</p> http://stackoverflow.com/questions/1343054/what-are-the-effects-of-failing-to-close-dispose-powershell-runspace-objects-befo 0 What are the effects of failing to close/dispose Powershell Runspace objects before process termination? unknown (google) 2009-08-27T18:43:24Z 2009-09-18T13:00:01Z <p>Given an application that maintains a singleton instance of a Runspace object (from System.Management.Automation.Runspaces) for the lifetime of the application, what are the potential side effects of failing to dispose of the Runspace before the application is terminated?</p> <p>The design rationale I have been presented with is that memory/handle leaks are a non-issue in this case because the process termination forces all of those resources to be freed anyway, and the singleton has the same lifetime as the application. Are there other considerations that are ignored by that design?</p> http://stackoverflow.com/questions/1437216/can-i-make-a-c-objects-lifetime-depend-on-another-object 0 Can I make a C# object's lifetime depend on another object? AndrewS 2009-09-17T07:23:41Z 2009-09-17T11:37:50Z <p>I have an object (Delegate) which needs to stay alive (not garbage collected) while another object (TargetObject) is alive. I want Delegate to be garbage collected when TargetObject is collected (or at least available for collection). </p> <p>The difficulty is that I don't want to need to reference Delegate from TargetObject since I want it to work for existing objects unaware of Delegate, and I don't want to affect the lifetime of TargetObject. Is this at all possible?</p> <p>Thanks.</p> <p>Edit: Thanks for the responses so far. I'll try to clarify what I'm up to.</p> <p>I'm trying to implement weak events but I'm not a fan of the WeakEventManager (particularly IWeakEventListener). I want to hold a weak reference to a delegate event handler (Delegate) which points to a method in object TargetObject. There needs to be a strong reference to Delegate while TargetObject is alive to keep Delegate alive, but if something with a longer lifetime references Delegate, it keeps TargetObject alive (defeating the purpose of the weak event).</p> <p>It would be nice if objects subscribing to weak events didn't have to have any special implementation details such as having to hold on to a collection of delegates. </p> <p>Edit Edit: Changed 'A' to 'Delegate' and 'B' to 'TargetObject'</p> http://stackoverflow.com/questions/400993/a-question-on-smart-pointers-and-their-inevitable-indeterminism 11 A Question On Smart Pointers and Their Inevitable Indeterminism Josh 2008-12-30T18:04:16Z 2009-08-05T13:23:51Z <p>I've been extensively using smart pointers (boost::shared_ptr to be exact) in my projects for the last two years. I understand and appreciate their benefits and I generally like them a lot. But the more I use them, the more I miss the deterministic behavior of C++ with regarding to memory management and RAII that I seem to like in a programming language. Smart pointers simplify the process of memory management and provide automatic garbage collection among other things, but the problem is that using automatic garbage collection in general and smart pointer specifically introduces some degree of indeterminisim in the order of (de)initializations. This indeterminism takes the control away from the programmers and, as I've come to realize lately, makes the job of designing and developing APIs, the usage of which is not completely known in advance at the time of development, annoyingly time-consuming because all usage patterns and corner cases must be well thought of.</p> <p>To elaborate more, I'm currently developing an API. Parts of this API requires certain objects to be initialized before or destroyed after other objects. Put another way, the order of (de)initialization is important at times. To give you a simple example, let's say we have a class called System. A System provides some basic functionality (logging in our example) and holds a number of Subsystems via smart pointers.</p> <pre><code>class System { public: boost::shared_ptr&lt; Subsystem &gt; GetSubsystem( unsigned int index ) { assert( index &lt; mSubsystems.size() ); return mSubsystems[ index ]; } void LogMessage( const std::string&amp; message ) { std::cout &lt;&lt; message &lt;&lt; std::endl; } private: typedef std::vector&lt; boost::shared_ptr&lt; Subsystem &gt; &gt; SubsystemList; SubsystemList mSubsystems; }; class Subsystem { public: Subsystem( System* pParentSystem ) : mpParentSystem( pParentSystem ) { } ~Subsystem() { pParentSubsystem-&gt;LogMessage( "Destroying..." ); // Destroy this subsystem: deallocate memory, release resource, etc. } /* Other stuff here */ private: System * pParentSystem; // raw pointer to avoid cycles - can also use weak_ptrs }; </code></pre> <p>As you can already tell, a Subsystem is only meaningful in the context of a System. But a Subsystem in such a design can easily outlive its parent System.</p> <pre><code>int main() { { boost::shared_ptr&lt; Subsystem &gt; pSomeSubsystem; { boost::shared_ptr&lt; System &gt; pSystem( new System ); pSomeSubsystem = pSystem-&gt;GetSubsystem( /* some index */ ); } // Our System would go out of scope and be destroyed here, but the Subsystem that pSomeSubsystem points to will not be destroyed. } // pSomeSubsystem would go out of scope here but wait a second, how are we going to log messages in Subsystem's destructor?! Its parent System is destroyed after all. BOOM! return 0; } </code></pre> <p>If we had used raw pointers to hold subsystems, we would have destroyed subsystems when our system had gone down, of course then, pSomeSubsystem would be a dangling pointer. </p> <p>Although, it's not the job of an API designer to protect the client programmers from themselves, it's a good idea to make the API easy to use correctly and hard to use incorrectly. So I'm asking you guys. What do you think? How should I alleviate this problem? How would you design such a system?</p> <p>Thanks in advance, Josh</p> http://stackoverflow.com/questions/1192842/detecting-when-an-nsview-is-dealloced 0 Detecting when an NSView is dealloc'ed Peter N Lewis 2009-07-28T09:02:09Z 2009-07-28T09:20:16Z <p>Is there any way to detect when an NSView will be dealloc'ed?</p> <p>The reason is, I have some simple delegates (such as an NSTextField delegate that handles -control:textView:doCommandBySelector: to allow the return/tab keys to be entered). I'd like to just stick this delegate object in the nib, wire up the NSTextField's delegate connection and have it work.</p> <p>And it does work, but the delegate is never released even after the NSTextField it is linked to is released, so the delegate object leaks.</p> <p>I'd like the delegate object to be able to detect when the NSTextField is dealloc'ed, but I can't think of any way to do this, which leaves me having to store a separate link to the delegate object from some other controller and manually release it at some point which is very much less than ideal. Any ideas?</p> http://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators 5 What is the lifetime and validity of C++ iterators ? sylvainulg 2009-04-17T06:40:01Z 2009-07-16T12:30:38Z <p>I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the list periodically), and the order of items isn't important either.</p> <p>So I thought of <em><code>std::list&lt;Thing*&gt; with this-&gt;position = insert(lst.end(), thing)</code></em> should do the trick. I'd like the Thing class to remember the position of each instance so that i can later easily do <em><code>lst.erase(this-&gt;position)</code></em> in constant time. </p> <p>However, i'm still a bit new to C++ STL containers, and i don't know if it's safe to keep iterators for such a long time. Especially, given that there will be other elements deleted ahead and after the inserted Thing before it's gone.</p> http://stackoverflow.com/questions/908941/what-are-the-advantages-of-using-a-concept-like-istartable 0 What are the advantages of using a concept like IStartable? Jacob Stanley 2009-05-26T04:32:39Z 2009-05-26T05:17:59Z <p>Instead of using an interface like this:</p> <pre><code>public interface IStartable { void Start(); void Stop(); } </code></pre> <p>I usually just make the constructor of an object run the Start() code, and implement IDisposable so that the dispose method runs the Stop() code.</p> <p>Is it just a matter of style? Or am I missing something important by not having something like IStartable? All I see is extra complexity, because you have to maintain it's started/stopped state.</p> <p>What are the pros and cons of using start/stop vs using ctor/dispose, especially in the context of an IoC/DI container?</p> <p><em>EDIT: Great answers, you've convinced me to use an interface for startable objects. I can't decide who's answer is the best so I'll accept whoever has the most up votes after 24 hours.</em></p> http://stackoverflow.com/questions/817958/when-does-a-mutable-state-value-freed-from-heap 0 When does a mutable state value freed from heap? Sung Meister 2009-05-03T20:44:18Z 2009-05-04T00:31:41Z <p>On F# WikiBook under <a href="http://en.wikibooks.org/wiki/F%5FSharp%5FProgramming/Mutable%5FData" rel="nofollow">Encapsulating Mutable State</a> section, there is a following code snippet.</p> <pre><code>&gt; let incr = let counter = ref 0 fun () -&gt; counter := !counter + 1 !counter;; val incr : (unit -&gt; int) &gt; incr();; val it : int = 1 &gt; incr();; val it : int = 2 &gt; incr();; val it : int = 3 </code></pre> <p>At first, it seemed easy enough to swallow the fact that, mutable <code>counter</code> value increments everytime <code>incr</code> is invoked.</p> <p>But after thinking about it for awhile, what I couldn't understand were when <code>counter</code> is freed from heap and also how <code>counter</code> still refers to previous value before being incremented. How is <code>counter</code> that lives within <code>incr</code> function scope survive through multiple function calls?</p> <p>So main questions are:</p> <ul> <li>When does <code>counter</code> freed from heap?</li> <li>Isn't <code>counter</code> a memory leak?</li> </ul> http://stackoverflow.com/questions/768861/what-other-ioc-containers-have-an-iinitializable-like-feature 1 What other IoC containers have an IInitializable like feature? Mendelt 2009-04-20T15:46:49Z 2009-04-21T13:01:55Z <p>I've been using Castle Windsor in my previous project and I liked it a lot. For my current project I'm looking to use a different IoC container. Castle Windsor hasn't had any new releases since 2007 and is still not at version 1.0 so it is hard to justify using it in a commercial environment.</p> <p>One of the things I like about Castle Windsor is that you can have the container call an Initialize method on your services after all dependencies have been set simply by making the service implement IInitializable. I used this a lot. It makes it easy to do property injection instead of constructor injection and that cleans up code and tests quite a bit.</p> <p>I've been looking at StructureMap, AutoFac, Unity and Spring.Net as alternatives but of these only Spring.Net supports something similar, it automatically calls an Init() method. Unfortunately Spring.Net does not really support the way I want to work with an IoC container (it injects based on string keys instead of interface declarations and therefore its autowiring support is limited too)</p> <p>Did I miss a similar feature in the IoC containers I looked at? Is my way of working with IoC containers wrong somehow? Or are there other IoC containers that do support something like IInitializable or Init()?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/713805/net-finalizers-and-exit0 1 .NET - Finalizers and exit(0) Cristi Diaconescu 2009-04-03T13:03:30Z 2009-04-11T15:11:48Z <p>I have a .NET C# / C++ app which uses a call to <code>exit(0)</code> (from <code>&lt;stdlib.h&gt;</code>) in a thread in order to terminate.</p> <p>The strange part is, under some circumstances, the finalizers of the managed objects are called right after the call to <code>exit</code>, and in other circumstances, they are not called at all.</p> <p>The circumstances are pretty deterministic - the app calls some methods from an external plugin dll (written in unmanaged C) during its lifetime.<br /> If I use dll A, the finalizers are always called.<br /> If I use dll B, the finalizers are never called.</p> <p>What's the expected behaviour of finalizers in case of an exit(0) call? (if there is any expected -and documented- behaviour)</p> <p>Can the calls to the external dlls change some global setting that may impact the way the process is terminated?</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi 11 What is the best way to do nested TRY AND FINALLY statement in Delphi Charles Faiga 2008-12-29T17:16:36Z 2009-03-23T09:59:09Z <p>Hi What is the best way to do nested try &amp; finally statements in delphi?</p> <pre><code>var cds1 : TClientDataSet; cds2 : TClientDataSet; cds3 : TClientDataSet; cds4 : TClientDataSet; begin cds1 := TClientDataSet.Create(application ); try cds2 := TClientDataSet.Create(application ); try cds3 := TClientDataSet.Create(application ); try cds4 := TClientDataSet.Create(application ); try /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// finally cds4.free; end; finally cds3.free; end; finally cds2.free; end; finally cds1.free; end; end; </code></pre> <p>Can you Suggest a better way of doing this?</p> http://stackoverflow.com/questions/426704/mvc-object-instances-or-static-classes 0 MVC Object Instances or Static classes? zsharp 2009-01-09T01:09:30Z 2009-01-09T01:15:21Z <p>I am confused as to when to create object instances or Static Helper classes. For example, if I call a method to update a data model and submit to database, i create an instance of the DataContext. What is the lifetime of that Datacontext and is it ok to create new instances every time there needs to be a new data updates? </p> <p>In my controller I created an instance of DataCOntext and reuse that instance when posting back to controller for example. </p>