The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
55 views

Dispose() for cleaning up managed resources?

In this answer I found, Cleanup the unmanaged resources in the Finalize method and the managed ones in the Dispose method, when the Dispose/Finalize pattern has been used in your code. And ...
4
votes
3answers
61 views

Why do I need to call a close() or shutdown() method?

I'm new in Java with some background in C++ in my High School years. Now I'm trying to make something and I chose Java as the programming language. I've done my homework and look a lot about ...
0
votes
0answers
76 views

C++ Constructor/Destructor Idiom Like in Java [duplicate]

Previously, I was programming on C++ with Constructor/Destructor Idiom. Is there any similar approach in Java ? finalize() method is not guaranteed to be called at specific time. Thanks
0
votes
1answer
80 views

Bitmap recycle in finalize method not working properly

I am having crashes in my application when I try to load an image with size close to the maximum size of the application heap. The first time I load the image is fine, then I delete references to the ...
27
votes
1answer
1k views

How can I find out what's causing differences in generated Sandcastle docs?

In Noda Time, we generate our documentation using Sandcastle and SHFB. We then commit the documentation back into the source repository - primarily because that makes it easy to view the latest (and ...
2
votes
6answers
82 views

Finalize first element of an array

Say, I have some class which holds an array of integers in it. Integer[] numbers; Also, I have some simple constructor which initializes my array: public Program() { numbers = new Integer[11]; ...
0
votes
2answers
25 views

does dispose method disposes the calling object also?

I found the following code on MSDN: public class DisposeExample { public class MyResource: IDisposable { private IntPtr handle; private Component component = new ...
6
votes
2answers
1k views

Difference between destructor, dispose and finalize method

I am studying how garbage collector works in c#. I am having confusions over the use of Destructor, Dispose and Finalize methods. As per my research and understandings, having a Destructor method ...
-1
votes
2answers
205 views

Code for java.lang.Object finalize() method [closed]

Im just really curious about how the finalize method in Object class works. I've been up and searching the web for about 30 minutes now and still havn't found anything useful, and for what I know, ...
6
votes
2answers
186 views

the correct technique for releasing a socket/event/ummaged code with the dispose/finalize pattern

How to implement the Dispose pattern when my class contains a socket & event? Should it be something like this? class MyClass { Socket m_ListenerSocket = new Socket(); book ...
1
vote
3answers
752 views

how to destroy an object in java?

I encountered this question in an interview with following options: How to destroy an object in java? a. System.gc(); b. Runtime.getRuntime.gc(); c. object.delete(); d. object.finalize(); ...
-1
votes
2answers
190 views

Memory leak in java [closed]

I used jprofiler to detect memory leak for my client code.At starting the memory used by java.util.hashmap$entry was increasing drastically up to 1700KB. after that it decreased too. The Heap dump ...
1
vote
2answers
154 views

Properly disposing an object hierarchy in C#

I am working on a project where a certain class hierarchy implements IDisposable. Some of the classes also implement a Finalize method ( ~MyClass() ) In general it looks something like this: public ...
1
vote
4answers
70 views

How am I able to call finalize()

In the following code, I am getting the output Hello. Can anyone explain why compiler is not reporting an error it I am calling a protected function outside the class and inheritance chain. package ...
1
vote
1answer
115 views

Java Finalizer Method and GC

I have created an object whose finalize method has been overridden to save and close the file with some information. That object is weak referenced from another object. I want to save some changes to ...
3
votes
1answer
292 views

How to finalize record passed through the untyped parameter of a function?

Can I pass "any" record type to my procedure ? Many times I used "records" with strings. type TR = record a: string; b: string; end; To clear them, I need to write: Finalize(R); ...
1
vote
1answer
332 views

How to finalize Live File System (LiveUDF) disc with DeviceIoControl and FSCTL_MAKE_MEDIA_COMPATIBLE in C#?

I'm trying to finalize a Live File System (or "Live UDF") optical disc in C#. From what I understand from reading MSDN and TechNet articles along with various forum postings, the Image Mastering API ...
5
votes
2answers
616 views

How to ensure finalize() is always called (Thinking in Java exercise)

I'm slowly working through Bruce Eckel's Thinking in Java 4th edition, and the following problem has me stumped: Create a class with a finalize( ) method that prints a message. In main( ), create ...
4
votes
1answer
164 views

Ensuring that “finally” runs on same thread when thread terminates

Here's a puzzle for you guys. I have a multithreaded program in which some threads work with managed resources like locks and semaphores. Some of the lock release primitives can only be performed ...
3
votes
1answer
171 views

Why MSDN mentions to override the Finalize() method?

Since my first lessons about C# classes I've learned that not only I cannot invoke the Finalize() method of a class explicitly(it is called by the Garbage Collector), but I'm not even allowed to ...
1
vote
1answer
67 views

Detecting finalize exceptions within a unit test

Is there a way to force all objects created during a unit test to finalise? The issue I keep running into is that any leaks due to lost GCHandle instances only seem to be finalised when the process ...
1
vote
2answers
113 views

Catastrophic failures within a “using” statement i.e. using(var a= new stream()) and a.Something() throws an exception

So I understand that at the end of a using block statement, the dispose method is called. What happens if I use a 'using(var a = new Stream()) { a.SomethingThrowsAnException() }' Does the stream ...
1
vote
2answers
460 views

Finalize method guidelines and best practices in C#

I have recently encountered an issue that is related to code running in the Finalize method overload. I am mostly aware of issues that are related to memory management/performance, but i am ...
0
votes
5answers
2k views

What is difference between System.gc() and finalize() method in java?

I am confuse in between system.gc() and finalize() method of java. We can't force to collect garbage object to JVM. We are allow to write both methods in our java code then if both are used for ...
5
votes
3answers
449 views

How does finalize() work in java?

So, I recently discovered the finalize method in Java (not sure why I missed it before, but there it is). This seems like it could be the answer to a lot of the issues I'm working with, but I wanted ...
1
vote
3answers
201 views

Why does the finalize function not get called in this unit test?

I'm trying to write a Java unit test that tests the effects of a call to a finalizer on an object. In order to be sure the finalizer gets called I'm using a WeakReference method I saw elsewhere on ...
4
votes
2answers
442 views

When is finalize called on singletons when a classloader is released?

By "released" I mean there are no references to the classloader remaining. We're running into a problem where a frequently-redeployed JEE application eats up permgen space. Analysis shows that a ...
1
vote
2answers
173 views

IronPython - proper resources deallocation on sys.exit()

What is the best way to properly finalize python script when sys.exit() is called? For example I have an app which: - opened log file - opened some USB gadget - decide it's time to close the app ...
0
votes
3answers
123 views

How to implement a guaranteed finalize behavior of an object

I want to implement a behavior on an object which is similar to a guaranteed finalize() in the Java language. I want some statements to be executed just before garbage collection happens. Please note ...
14
votes
4answers
13k views

In Java, what purpose do the keywords `final`, `finally` and `finalize` fulfil?

In Java, what purpose do the keywords final, finally and finalize fulfil?
1
vote
0answers
322 views

Android MediaScanner finalize()

In Gingerbread 2.3.4, there are times that the unmounting of SDCard fails. When I checked the log, mediaserver is still accessing some files in the sdcard and even vold throw SIGKILL at mediaserver, ...
1
vote
1answer
394 views

Finalization queue in Java

Is it the case that only if a class has a finalize() method, only then that object, when unreachable, is added to the finalization queue? Reason being I was going through this link and in the category ...
2
votes
4answers
375 views

Java finalizer guardian does not seem to work?

I have a super class with telescoping constructors with a finalize() method. To protect against subclasses forgetting to invoke super.finalize, I have written a finalizer guardian (EJ Item 7 ) like ...
2
votes
1answer
302 views

why is my Java object being copied or finalize() being called twice?

Long Java/Android/JNI story short... I have two classes, an object/class which I created called Packet, and a JNI interface to lower-level C code that I wrote. In one class, I parse incoming packets ...
1
vote
1answer
147 views

when will finalize() be called on my class instance in this scenario?

I know that finalize() is called whenever a class instance is collected by the garbage collector. However, I am a little bit confused when passing an instance of a class to another thread via a ...
0
votes
2answers
207 views

when is finalize called when deployed on tomcat

I have created a simple Java class as follows: I pass content as a byte-array and a Filename and the class creates a TempFile somewhere. import java.io.File; import java.io.IOException; import ...
1
vote
1answer
82 views

updating webservice with objects when app exits

Im working on a silverlight application where a user can create, edit, delete objects. The changes they make are placed in a queue which is processed every 4 minutes. When it is processed, the ...
0
votes
2answers
414 views

method finalize and exceptions

I don't understand very well when an exception is ignored by the GC when it reclaims from the memory an object. If I have a try/catch into a finalize method I see it is always executed... so which ...
3
votes
1answer
421 views

Finalize Queue Not Releasing Fast Enough

I have a c# 3.5 framework Windows application that runs against an Oracle DB located on a server. One of the forms of the application has eight tabs across the top. Within the tab content area of ...
0
votes
1answer
373 views

Java - Objects are not “garbage collected” at the end of the program?

public class Main { public static void main(String[] args) throws InterruptedException { ClassA a = new ClassA(); a = null; //Runtime.getRuntime().gc(); ...
6
votes
5answers
777 views

Best practice for implementing in Ada (2005 or 2012) an equivalent of the java finalize block

Java has the finalize block which allows to execute some statements after a block is left (executed even if an exception is raised). Example: try { ... } catch (Exception e) { ... } finally { ...
4
votes
1answer
145 views

How can I provoke multiple calls to Finalize?

In a recent AdaCore Gem there's a statement The implementation of Finalize is slightly more complicated: the Ada reference manual indicates that a Finalize procedure should always be idempotent. An ...
2
votes
1answer
283 views

How to release Android resources when an app crashes

I'm working an Android AudioRecord app. If I do not call the release() method on the AudioRecord object at the end of the script, it will not run correctly until I restart the phone. This becomes a ...
2
votes
5answers
883 views

Why does the traditional Dispose pattern suppress finalize?

Assuming this as the traditional Dispose pattern (taken from devx but seen on many websites) class Test : IDisposable { private bool isDisposed = false; ~Test() { Dispose(false); } ...
4
votes
2answers
8k views

What is the difference between finalize and dispose in .net? [duplicate]

Possible Duplicate: Finalize vs Dispose Hi, Recently I was quizzed in an interview about finalize and dispose. When is each one of them used and how is Garbage Collector related to them. ...
3
votes
4answers
655 views

Do I need to implement a dispose or finalize in my objects?

For too long I let the garbage collector do its magic, removing all responsibilities from my self. Sadly it never turned into an issue... So I never gave a second thought to the subject. Now when I ...
2
votes
2answers
2k views

Cipher.doFinal output size

I am doing AES CBC decryption in java using javax.crypto . I am using the following Cipher class methods: public final void init (int opmode, Key key, AlgorithmParameters params) method for ...
22
votes
6answers
2k views

Java Interview Question: finalize() method

I was given the following phrase in an interview: The invocation of an Object's finalize() method is the last thing that happens before an object is garbaged collected. I had to answer by: ...
0
votes
2answers
267 views

What is the function declaration for the Java finalize method?

I've been searching code for the finalize for nearly 1 mon. Can u pls help me for the code. Thanks in advance.
2
votes
3answers
273 views

.NET FINALIZE CONCEPT PROBLEM

Is it really better not to use finalize compare to dispose ? Does dispose remove unmanaged resource in first parse ? What is suppressing finalize ?

1 2