Tagged Questions
2
votes
3answers
102 views
Definition: Unfinalized versus finalizable object
In order to understand weak references in Java, I have had to consult the Java Language Specification. The following part, from section 12.6, puzzles me:
An unfinalized object has never had its ...
2
votes
8answers
433 views
Finalizer launched while its object was still being used
Summary: C#/.NET is supposed to be garbage collected. C# has a destructor, used to clean resources. What happen when an object A is garbage collected the same line I try to clone one of its variable ...
1
vote
1answer
75 views
What happens to FReachable Objects if they are found to be reachable?
If suppose an object implements the Finalize method but inside it refers an alive static object of the application (bad design! but very possible).
Now when GC kicks in and finalises the object by ...