Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
6answers
948 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: ...
13
votes
8answers
10k views

Why is the finalize() method in java.lang.Object “protected”?

Out of curiosity, Why is the finalize() method's access modifier is made as protected. Why cant it be public? Can someone explain me any specific reason behind this? Also, I came to know that ...
10
votes
4answers
271 views

What is the difference between final, finally, and finalize?

I'm new to Java and I want to know what is the difference between final, finally, and finalize? Thanks
8
votes
3answers
7k views

In C# what is the difference between a destructor and a Finalize method in a class?

A question for the C# gurus out there. What is the difference, if there is one, between a destructor and a Finalize method in a class? I recently discovered that Visual Studio 2008 considers a ...
6
votes
5answers
640 views

Phantom Referenced Objects

Phantom References serve for post-mortem operations. The Java specification states that a phantom referenced object will not be deallocated until the phantom-reference itself is cleaned. My question ...
5
votes
5answers
399 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
6answers
8k views

Java Finalize method call

I need to find when finalized method called in the JVM. I Created a test Class which write into file when finalized method called by Overriding the protected finalize method It is not executing. Can ...
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
4answers
5k views

VB.NET - Should a Finalize method be added when implementing IDisposable?

In Visual Studio, when I type the line "Implements IDisposable", the IDE automatically adds: a disposedValue member variable a Sub Dispose() Implements IDisposable.Dispose a Sub Dispose(ByVal ...
3
votes
1answer
200 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 ...
3
votes
1answer
98 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 ...
3
votes
2answers
1k views

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

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
392 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 ...
3
votes
5answers
286 views

The cost of finalize in .Net

(1) I've read a lot of questions about IDisposable where the answers recommend not using Finalize unless you really need to because of the process time involved. What I haven't seen is how much this ...
2
votes
4answers
112 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
137 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 ...
2
votes
1answer
181 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
4answers
352 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); } ...
2
votes
2answers
662 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 ...
2
votes
3answers
193 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 ?
2
votes
3answers
508 views

Finalize method in System.Object class

Out of curiosity i disassembled mscorlib.dll to check the implementation of System.Object class. I found something weird in that. 1). public class Object { ... protected override void ...
2
votes
3answers
6k views

How do you export your finished application from Xcode?

I feel silly for having to ask this. I've got an application to a point where I want to send someone a beta to test on their machine, but I don't know how to get Xcode to produce a .app file for me ...
2
votes
4answers
2k views

What happened internally (JVM) when System.gc() or finalize() method called?

What happened internally (JVM) when System.gc() or finalize() method called? Is this really collect garbage or reduce performance ?
1
vote
2answers
19 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 ...
1
vote
1answer
133 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 ...
1
vote
1answer
88 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 ...
1
vote
1answer
28 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 ...
1
vote
4answers
187 views

difference b/w destructor and finalise method

I want to know the sequence of how these function are called. Like if our heap is full, GC will be called. It will mark the object and call its finalise operation, now we have sweep stage.. in which ...
1
vote
1answer
782 views

close, dispose, finalize, GC, Idisposable,… have you got a clear description of them?

i am completely confused about close, dispose, finalize, GC, Idisposable. Oh, could you please send me a clear description of them?
1
vote
1answer
67 views

Final step in silverlight 2

I have been working on multiple silverlight applications, but up to this point they have only been running in my system when I test them from Visual Studio. Now that I am getting ready to push it out ...
0
votes
3answers
72 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 ...
0
votes
0answers
109 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, ...
0
votes
2answers
96 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 ...
0
votes
2answers
84 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 ...
0
votes
0answers
101 views

Converting 1.6.8 Mongo MapReduce to Mongo 1.8.1

I have a mapReduce script that needs to update an email with a prefix of old_ e.g. aaa@yyy.com -> old_aaa@yyy.com In the previous mapReduce, there was an update call like the following. ...
0
votes
1answer
215 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(); ...
0
votes
2answers
184 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.
0
votes
6answers
907 views

Java: file write on finalize method

In my understanding a singleton object will destroy only when the application is about to terminate. So in C++ I write a Singleton class to log my application and in that Singleton logger's destructor ...
0
votes
2answers
601 views

java: Close connection after all threads have terminated

The following is my Class code import java.net.*; import java.util.*; import java.sql.*; import org.apache.log4j.*; class Database { private Connection conn; private org.apache.log4j.Logger ...
0
votes
1answer
528 views

C# AutoSave cleanup; best practice?

I've got a class that represents a document (GH_Document). GH_Document has an AutoSave method on it which is called prior to every potentially dangerous operation. This method creates (or overwrites) ...
0
votes
1answer
127 views

Finalization Reachable Table

If I implement a destructor in a class, Foo, instances of Foo are tracked closely on the finalization queue. When an instance of Foo is garbage collected, I understand that the CLR sees the entry in ...