Tagged Questions

A finalizer is a special method in an object-oriented language that is executed when an object is garbage collected.

learn more… | top users | synonyms

25
votes
10answers
5k views

Is the destructor called if the constructor throws an exception?

Looking for an answer for C# and C++. (in C#, replace 'destructor' with 'finalizer')
18
votes
4answers
1k views

The difference between a destructor and a finalizer?

Please Note: This question is about the difference in terminology between the words "destructor" and "finalizer" and their correct usage. I have merely provided examples of their use in C# and C++/CLI ...
14
votes
4answers
2k views

Static Finalizer

What is the right way to perform some static finallization? There is no static destructor. The AppDomain.DomainUnload event is not raised in the default domain. The AppDomain.ProcessExit event ...
12
votes
1answer
1k views

What is the scope of finalizer thread - per application domain or per process?

Based on all my reading there should be one GC thread to invoke all finalizers. Now, the question is what is the scope of this "one" thread - per process or per application domain, as the whole ...
11
votes
4answers
272 views

Why structs cannot have destructors?

What is best answer on interview on such question you think? I think I didn't find a copy of this here, if there is one please link it.
11
votes
2answers
433 views

Two questions about Dispose() and destructors in C#

I have a question about how to use Dispose() and destructors. Reading some articles and the MSDN documentation, this seems to be the recommended way of implementing Dispose() and destructors. But I ...
11
votes
6answers
303 views

Why do finalizers have a “severe performance penalty”?

Effective Java says : There is a severe performance penalty for using finalizers. Why is it slower to destroy an object using the finalizers?
9
votes
6answers
407 views

Good uses of the finalize() method

This is mostly out of curiosity. I was wandering if anyone has encountered any good usage for Object.finalize() except for debugging/logging/profiling purposes ? If you haven't encountered any what ...
9
votes
2answers
602 views

How do I unit test a finalizer?

I have the following class which is a decorator for an IDisposable object (I have omitted the stuff it adds) which itself implements IDisposable using a common pattern: public class ...
8
votes
2answers
231 views

Good samples of using Finalizers in C#

When I read a few articles about memory management in C#, I was confused by Finalizer methods. There are so many complicated rules which related with them. For instance, nobody knows when the ...
8
votes
2answers
402 views

Can I prevent an uncaught exception in another AppDomain from shutting down the application?

I'm having trouble with a misbehaved library that throws an exception in a finalizer, which of course crashes the application. To avoid this, I tried loading the library in its own AppDomain, but the ...
8
votes
8answers
584 views

Why are there finalizers in java and c#?

I'm not quite understanding why there are finalizers in languages such as java and c#. AFAIK, they: are not guaranteed to run (in java) if they do run, they may run an arbitrary amount of time after ...
8
votes
5answers
416 views

Reference to object during finalize

What happens if you save a reference to the current object during the finalize call? For example: class foo { ... public void finalize() { bar.REFERENCE = this; } } Is the ...
7
votes
3answers
109 views

How to implement object counter in Java

An interviewer asked me that How can you implement a class Foo, where you will be able to count instances of that class. There are more threads which are creating instance of that class Foo. ...
7
votes
5answers
137 views

Is it safe to access a reference type member variable in a finalizer?

In other words, class Foo { object obj; Foo() { obj = new object(); } ~Foo() { obj.ToString(); /* NullReferenceException? */ } }
7
votes
3answers
4k views

Proper cleanup of WPF user controls

I am relatively new to WPF, and some things with it are quite foreign to me. For one, unlike Windows Forms, the WPF control hierarchy does not support IDisposable. In Windows Forms, if a user control ...
6
votes
3answers
113 views

Troubleshooting a java memory leak: finalization?

I have a misbehaving application that seems to leak. After a brief profiler investigation, most memory (80%) is held by java.lang.ref.Finalizer instances. I suspect that finalizers fail to run. A ...
6
votes
3answers
306 views

Why doesn't Thread implement IDisposable?

I noticed that System.Threading.Thread implements a finalizer but not IDisposable. The recommended practice is to always implement IDisposable when a finalizer is implemented. Jeffrey Richter wrote ...
6
votes
2answers
2k views

Is it safe to call an RCW from a finalizer?

I have a managed object that calls a COM server to allocate some memory. The managed object must call the COM server again to free that memory before the managed object goes away to avoid a memory ...
6
votes
5answers
537 views

What are finalisers for?

I have been programming in .NET for four years (mostly C#) and I use IDiposable extensively, but I am yet to find a need for a finaliser. What are finalisers for?
5
votes
4answers
107 views

c#: How to handle finalizer exceptions from a 3rd-party library?

I got a problem here... Finalizers are always called by .net framework, so the sequence could be out of control; and even if the constructor failed, the destructor still can be triggered. This could ...
5
votes
7answers
340 views

Why is it always necessary to implement IDisposable on an object that has an IDisposable member?

From what I can tell, it is an accepted rule that if you have a class A that has a member m that is IDisposable, A should implement IDisposable and it should call m.Dispose() inside of it. I can't ...
5
votes
1answer
218 views

F# Equivalent of Destructor

I am translating a C# class that wraps an unmanaged library to F#. I have run into the seemingly simple problem of rewriting the destructor that follows. class Wrapper { // P/Invoke ellided ...
5
votes
2answers
489 views

C++/CLI: preventing garbage collection on managed wrapper of unmanaged resource

I have a C++ unmanaged class NativeDog that needs to be used from C#, so I've create a wrapper class ManagedDog. // unmanaged C++ class class NativeDog { NativeDog(...); // constructor ...
5
votes
5answers
247 views

What if a finalizer makes an object reachable?

In Java, finalize is called on an object (that overrides it) when it's about to be garbage collectioned, so when it's unreachable. But what if the finalizer makes the object reachable again, what ...
5
votes
2answers
185 views

Are .net finalizers always executed?

Are finalizers guaranteed to be executed in .NET at some point (spare power outages and the like)? I know how GC works and that it is nondeterministic when exactly they'll run. (The search did not ...
5
votes
1answer
346 views

Java GC Question: How could an object become unreachable while one of its methods is still being executed?

I have been reading these slides about Java finalizers. In it, the author describes a scenario (on slide 33) whereby CleanResource.finalize() could be run by the finalizer thread while ...
5
votes
3answers
188 views

Performance implications of finalizers on JVM

According to this post, in .Net, Finalizers are actually even worse than that. Besides that they run late (which is indeed a serious problem for many kinds of resources), they are also less ...
5
votes
3answers
98 views

Can code be run when an object falls out of scope in .Net?

Is there any way to "automatically" run finalization / destructor code as soon as a variable loses scope in a .Net language? It appears to me that since the garbage collector runs at an indeterminate ...
5
votes
8answers
927 views

IDisposable, Finalizers and the definition of an unmanaged resource

I'm trying to make sure that my understanding of IDisposable is correct and there's something I'm still not quite sure on. IDisposable seems to serve two purpose. To provide a convention to "shut ...
5
votes
5answers
962 views

How important is disposing a Font, really?

I'm aware that the best practice is to call Dispose on any object that implements IDisposable, especially objects that wrap finite resources like file handles, sockets, GDI handles, etc. But I'm ...
5
votes
5answers
834 views

Should GC.SuppressFinalize be called on objects that do not have a finalizer?

For some reason FXCop seems to think I should be calling GC.SuppressFinalize in Dispose, regardless of whether I have a finalizer or not. Am I missing something? Is there a reason to call ...
5
votes
4answers
269 views

Need to implement a finalizer on a class that uses TcpClient?

I have a class (say MyClass) that uses (has as a private field) a TcpClient object. MyClass implements IDisposable calling TcpClient.Close in the Dispose method. My question is should MyClass also ...
5
votes
4answers
811 views

RAII in Ruby (Or, How to Manage Resources in Ruby)

I know it's by design that you can't control what happens when an object is destroyed. I am also aware of defining some class method as a finalizer. However is the ruby idiom for C++'s RAII ...
4
votes
1answer
139 views

Finalizer stuck in infinite loop

I came across a interview question which i did not know the answer ( little help :) ) well it stated something of the sort : Class SomeClass : IDisposable { public void Dispose() { ...
4
votes
2answers
175 views

is memory leak? why java.lang.ref.Finalizer eat so much memory

I dump the jvm memory ,use mat(IBM memoryanalyzer) analyzer the dump file .find the org.logicalcobwebs.proxool.ProxyStatement(java.lang.ref.Finalizer ) class eat many memory ,why does the class eat so ...
4
votes
3answers
86 views

When can't you use SafeHandle over Finalizer/IDisposable?

When seeing about the whole finalizer/IDisposable issue, it is usual to see that, at the end, after all the long description, there will be something to the meaning of "LOL what I said was actually ...
4
votes
1answer
67 views

Can I reference / use COM objects in my finalizer?

I have a COM type (created using tlbimp.exe) and a C# class that wraps this object. I want to perform some clean up in the finalizer for my C# wrapper. Following the guidelines here I might write ...
4
votes
3answers
413 views

Garbage Collection and Finalizers: Finer Points

In answering another question on SO, and the subsequent comment discussion, I ran into a wall on a point that I'm not clear on. Correct me on any point where I'm astray... When the Garbage Collector ...
4
votes
1answer
313 views

AppDomain.Unload throws in Finalizer?

So here is the story so far, I have this worker thingy which uses an AppDomain to perform some task. The domain is expensive to setup and teardown. So I create a cache per-thread of WeakReference ...
4
votes
1answer
270 views

Will SqlConnection get disposed by GC?

Disclaimer: I know IDisposable should be implemented when dealing with unmanaged resources. The rest of the code should be deterministic and do using (...) { } (equivalent of try {} finally { ...
4
votes
2answers
236 views

Why “Finalize method should not reference any other objects”?

I have been pondering why it is recommended that we should not release managed resources inside finalize. If you see the code example at ...
4
votes
4answers
722 views

Gracefully finalizing the SoftReference referent

I am using a search library which advises keeping search handle object open for this can benefit query cache. Over the time I have observed that the cache tends to get bloated (few hundred megs and ...
4
votes
3answers
179 views

is it legal to recreate a rooted reference to 'this' in a .net destructor?

Is it legal to write the following in .net ? public class A { public int i = 0; ~A() { Aref = this; } } public static A Aref; static ...
4
votes
4answers
1k views

How to identify the GC Finalizer thread?

I have a .NET (C#) multi-threaded application and I want to know if a certain method runs inside the Finalizer thread. I've tried using Thread.CurrentThread.Name but it doesn't work (returns null). ...
3
votes
2answers
103 views

Are destructor methods used implicitly by the garbage collector, and dispose methods used by developers to explicitly dispose of objects?

I can see there's already a lot of threads regarding dispose vs. destructor methods but I just want to make sure that I'm understanding them correctly before I move on. Are destructor methods used ...
3
votes
4answers
213 views

Can anyone explain this finalisation behaviour

Whilst 'investigating' finalisation (read: trying stupid things) I stumbled across some unexpected behaviour (to me at least). I would have expected the Finalise method to not be called, whereas it ...
3
votes
1answer
111 views

How can I find the reason for a hung finalizer queue?

I have an application that experiences a slow memory leak from the word go. Using ANTS Memory Profiler I can see that all of the leaked memory is being held by the finalizer queue's GC root. I ...
3
votes
4answers
266 views

Using the Destructor/Dispose of the base class?

In C#, as mentioned in the Documentation, and this nice post's accepted answer, it's stated that classes don't inherit the Destructor of their parent class. The question : If I want to make sure to ...
3
votes
4answers
124 views

Why do C# destructors need to have XML Documentation?

I like to keep the comments and Xml documentation of my C# code fairly minimal. Preferring to make the code self-documenting where possible instead. But the C# compiler gives a warning if I don't ...

1 2 3