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

0
votes
1answer
11 views

WCF NullReferenceException in the Finalizer

We had problems with WCF that took us a long time to diagnose so I'm posting them here in case someone has similar issues (haven't found a reference anywhere else). Our processes would often crash ...
0
votes
2answers
41 views

C# dispose is not called when object leaves scope in C++/CLI

I have a C# object that is resposible for a ressource which looks like this: public sealed class CLoadingScope { private bool isDisposed; public CLoadingScope() {} ...
0
votes
1answer
25 views

Mule - flow cleanup code approach

We just started using Mule a month back and so far it's been a good learning. Right now, we have quite a few flows implemented that integrates our disparate systems. One of the requirements for us is ...
3
votes
2answers
124 views

Memory leaks in C# while using C++/CLI defined class with finalizer

When I implement a class in C++/CLI DLL: public ref class DummyClass { protected: !DummyClass() { // some dummy code: std::cout << "hello" << std::endl; } } ...
1
vote
1answer
34 views

Can Interlocked be used in a Finalizer?

Suppose I need to clean up some managed resources in a finalizer, or at least record it somewhere in a thread safe way that a clean up is needed. From what I understand, taking locks in a finalizer is ...
1
vote
1answer
52 views

Java finalizers: An acceptable use-case?

I have a controller class that, in the course of its operation, uses an executor it maintains to perform tasks. If I just let the gc clean up the controller when it goes out of scope, the JVM doesn't ...
2
votes
1answer
78 views

Why the complicated scheme for correctly implementing IDisposable?

Earlier today I ran into CA1063 when running code analysis on some code at work. I have two questions: Why does the following code not cause CA1063 even though it clearly violates some of the ...
0
votes
0answers
47 views

Proper Location to Call Dispose/Close for ManualResetEvent in C# Form Application

I am trying to do the right thing and call Dispose on my ManualResetEvent(s), but they need to be around (since multithreaded application with button clicks that rely on the events) until the form is ...
3
votes
3answers
82 views

Why is NET garbage collector never called?

I'am working on an application that has problems with its memory consumption. If a user clicks long enough in the application it ends in an OutOfMemoryException. I profiled the application with 'ANTS ...
1
vote
1answer
83 views

c++/cli Best practice for free GCHandle in the finalizer

I have some functions in c and I would use this in a .net application. For this I wrote an Wrapper class with C++/cli. In the c interface is a callback function and wrapped this in a .net delegate. ...
3
votes
3answers
197 views

C# WeakReference object is NULL in finalizer although still strongly referenced

Hi I have code here where I don't understand why I hit the breakpoint (see comment). Is this a Microsoft bug of something I don't know or I don't understand properly ? The code was tested in Debug ...
7
votes
2answers
171 views

Why does the c# garbage collector not keep trying to free memory until a request can be satisfied?

Consider the code below: using System; namespace memoryEater { internal class Program { private static void Main(string[] args) { Console.WriteLine("alloc 1"); ...
0
votes
2answers
77 views

Read DependencyProperty from Different Thread

I'm having destructor issues. Here is code that repros the problem: class DPDemo : DependencyObject { public DPDemo() { } ~DPDemo() { Console.WriteLine(this.Test); // ...
0
votes
2answers
155 views

About the Dispose pattern and the Finalizer in C#

First in this MSDN page there is a standard Dispose pattern. And there is a bool as the parameter of the protected Dispose method to tell the GC whether managed resources are freed manually already, ...
1
vote
1answer
75 views

why finalize() does not automatically call its parent finalize() like constructor in java?

I have override the finalize() method to do some work while re-claiming the memory space of the objects.But somebody says that i have to call the parent's finalize() in the overriding the finalize() ...
0
votes
1answer
67 views

Can a C# class automatically manage unamanaged resources

I'm wrapping some native code that has some manual resource handling. I want my C# wrapper to handle this without passing the responsibility on to the clients. Is this possible, or will I inevitably ...
0
votes
1answer
97 views

Cache to map IntPtr handles to C# class instances in pinvoke callbacks

I'm writing a C# wrapper around a native dll that uses opaque pointers to identify resources. A typical example would be something like typedef struct session session; typedef struct track track; ...
1
vote
1answer
93 views

Finalizer Guardian

I was going through finalizer guardian example posted on Stack Overflow, I have few questions regarding this: Why do we need to create a Guardian object? Why won't simply overriding the finalizer ...
2
votes
3answers
60 views

Finalizer not called before second object is created except when using weakref

I was playing around with ruby finalizers and noticed some behaviour that is very strange to me. I could reduce the triggering code to the following: require "weakref" class Foo def initialize ...
-1
votes
3answers
95 views

is finalizers guaranteed to be called in Java? [closed]

Is finalizers guaranteed to be called in Java? If it differs from JVM to JVM, what about the case in Dalvik VM for Android?
29
votes
4answers
1k views

GC.Collect() and Finalize

Ok, it's known that GC implicitly calls Finalize methods on objects when it identifies that object as garbage. But what happens if I do a GC.Collect()? Are the finalizers still executed? A stupid ...
1
vote
2answers
60 views

Garbage collection demonstration program doesn't compile

I have written a simple program that demonstrates garbage collection. Here is the code : public class GCDemo{ public static void main(String[] args){ MyClass ob = new MyClass(0); for(int i = ...
10
votes
2answers
184 views

Advanced debugging advice in WPF GarbageCollection

Situation We are running a large WPF application which does not release memory for quite some time. It is not a real memory leak, as the memory will be released eventually. I know that normally, this ...
2
votes
5answers
88 views

How to tearDown() and setUp() from entire memory scratch?

I have global static registry in my class, which registering instances in some circumstances. Actually it does not depend on garbage collecting, but some functionality is obviously placed in ...
19
votes
4answers
653 views

Uncaught exception thrown by finalizer: Google API bug Or Samsung kernel bug?

I keep getting this error when launch my app on my galaxy Tab 2 (Samsung). The app i'm developing is quite complicated and it is very hard to track down where this error originates from. So I started ...
1
vote
1answer
277 views

Java using finalize for child thread shutdown?

I am writing a multi-threaded java console application that I am intending to kill via Ctrl-C. In this situation, if I have a class that encapsulates a single thread is it good practice to shutdown ...
7
votes
3answers
832 views

'Uncaught exception thrown by finalizer' when opening MapActivity

I have these lines in my code: // create tab4 intent = new Intent(this, ActWhereAmI.class) .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); tabspecWhereAmI = tabHost .newTabSpec("tab4") ...
0
votes
2answers
109 views

Under which circumstances does GC.WaitForPendingFinalizers() block in .NET?

Quoting from the MSDN documentation for GC.WaitForPendingFinalizers(): The thread on which finalizers are run is unspecified, so there is no guarantee that this method will terminate. I don't ...
0
votes
1answer
162 views

How to destroy Processing PApplet without calling exit()?

I working on a Processing program that runs in to different windows. On holds the controllers, thats the main PApplet, the other one is running some OpenGL and is a subclass of PApplet as well. ...
2
votes
3answers
256 views

How to properly destroy a class

In Ruby, I have a DAO class, which is extended by a class that makes managing the connections easier, which is extended by a class that represents and manipulates data in a DB, which is further ...
4
votes
2answers
154 views

How to properly implement a finalizer for detecting resource leaks in Java

Let's say I have created some resource class with a close() method for cleaning up the resource, and I want to override finalize() to free the resource (and print a warning) if someone has forgotten ...
1
vote
0answers
50 views

Are finalizers triggered when an application crashes?

When an application crashes, either when run normally or when run in the Visual Studio debugger, are finalizers triggered?
0
votes
2answers
182 views

Soft vs Weak References

I have a question on SoftReferences WeakReferences in Java. What i know is: GC uses algorithms to decide whether or not to reclaim a softly reachable object, but always reclaims a weakly reachable ...
2
votes
1answer
207 views

Memory leak on Jetty 8 server

I have taken the memory dump, analysed it with memory analyzer. It showing 73% of memory taken by java.lang.ref.finalizer object. I went to see what is inside this very big object. I found it looks ...
0
votes
2answers
131 views

dispose a list of IDisposables in the finalizer

I have a couple of unmanaged memory structures used to communicate with c++ dlls. Each such structure has to be freed manually, so I wrap it in a MyUnmanagedStructure which implements IDisposable. I ...
2
votes
1answer
355 views

Finalizers in Ruby: is there an equivalent to “__destruct” from PHP?

Within PHP classes the parser deals with the __construct and __destruct methods to instantiate the instance and destroy it when the script exits or you use unset. When you extend a class you simply ...
5
votes
2answers
368 views

When is it possible to call Finalize in Dispose?

I was browsing the decompiled source code for a DLL in Reflector, and I came across this C# code: protected virtual void Dispose([MarshalAs(UnmanagedType.U1)] bool flag1) { if (flag1) { ...
5
votes
4answers
60 views

Store 'this' at finalization

How could be defined a code that store 'this' during class finalization? How the garbage collector should behave (if defined somewhere)? In my mind the GC should finalize multiple times the class ...
1
vote
4answers
108 views

guaranteeing code runs in C# finalizers

I am writing an ASCOM telescope driver and I need to guarantee that a few serial port commands are sent to the scope to stop the scope from moving when an client application fails to disconnect ...
1
vote
1answer
79 views

Will an object be GC'ed if I save a reference to it in its finalize method? [duplicate]

Possible Duplicate: Reference to object during finalize I have an Object which is eligible for garbage collection, but within its finalize method, I save a reference to that Object, say by ...
5
votes
3answers
146 views

What makes Finalizers so costly?

From Effective Java: Oh, and one more thing: there is a severe performance penalty for using finalizers. On my machine, the time to create and destroy a simple object is about 5.6 ns. Adding a ...
1
vote
2answers
248 views

Execute code when VisualStudio debugger is exiting

I had assumed that when terminating debugging (such as by hitting the Stop button, or hitting Shift+F5), that any class implementing a finalizer or IDisposable would be, well, disposed. I have some ...
2
votes
2answers
192 views

Safe to call managed resource from Finalizer? (if i check null)

Is it not safe to call: component.Dispose(); (if i check null) from the Finalizer if i alter the code to this: ~MyResource() { Dispose(); } public void Dispose() { // Check to see if Dispose ...
2
votes
3answers
547 views

GC.Collect() not collecting immediately?

In the course of a discussion in chat, I wrote this console application. Code: using System; class Program { static void Main(string[] args) { CreateClass(); ...
1
vote
1answer
55 views

Triggering finalizer in the VS2010 debugger

Using the VS2010 debugger for managed code is it possible to trigger the finalizer thread to run? Use Case: Using Tasks may throw exceptions on the finalizer of the Task object if the task it self ...
0
votes
1answer
78 views

Cleanly shutting down a DLL's Static events in a host I don't control

Does the following psuedo code accomplish my goal of cleaning up after myself when my DLL is being hosted by code I don't control? More specifically, how do I clean up my objects created in my ...
5
votes
2answers
270 views

Finalizer not called after unhandled exception even with CriticalFinalizerObject

I have test code like this: public class A : CriticalFinalizerObject { ~A() { File.WriteAllText("c:\\1.txt", "1z1z1"); } } class Program { static void Main(string[] args) ...
3
votes
4answers
322 views

Is closing the connection in finalize best practice? [duplicate]

Possible Duplicate: Why would you ever implement finalize()? I saw some java files with the following code: public void finalize() { if (conn != null) { try { ...
10
votes
6answers
278 views

Very strange OutOfMemoryError

As always, a lengthy problem description. We are currently stress testing our product - and we now we face a strange problem. After one to two hours, heap space begins to grow, the application dies ...
1
vote
2answers
130 views

Debugging objects failing to finalize?

I have the follow code in my application to help me check that ViewModels are being finalized correctly: #if DEBUG static int openViewModels = 0; protected AbstractViewModel() { ...

1 2 3 4