Tagged Questions
A weak reference is a reference that does not protect the referenced object from collection by a garbage collector. An object referenced only by weak references is considered unreachable (or "weakly reachable") and so may be collected at any time. Weak references are used to avoid keeping memory references by unneeded objects. Some garbage-collected languages feature or support various levels of weak references, such as Java, C#, Python, Perl and Lisp.
74
votes
3answers
15k views
What is the difference between a soft reference and a weak reference in Java?
The title pretty much sums it.
33
votes
9answers
9k views
When would you use a WeakHashMap or a WeakReference?
The use of weak references is something that I've never seen an implementation of so I'm trying to figure out what the use case for them is and how the implementation would work. When would you (or ...
30
votes
9answers
1k views
Is there a practical use for weak references? [closed]
Possible Duplicate:
Weak references - how useful are they?
Since weak references can be claimed by the garbage collector at any time, is there any practical reason for using them?
21
votes
4answers
2k views
Is it possible to create a “weak reference” in javascript?
Is there any way in javascript to create a "weak reference" to another object? Here is the wiki page describing what a weak reference is. Here is another article that describes them in Java. Can ...
21
votes
6answers
3k views
Is there a SoftHashMap in Java?
I know there is a WeakHashMap in java.util, but since it uses WeakReferences for everything, which is only referenced by this Map, referenced objects will get lost on the next GC cycle. So it's nearly ...
19
votes
3answers
2k views
Understanding Java's Reference classes: SoftReference, WeakReference, and PhantomReference
Can someone explain the difference between the three Reference classes (or post a link to a nice explanation)? SoftReference > WeakReference > PhantomReference, but when would I use each one? Why is ...
16
votes
4answers
6k views
I have a circular reference. How can I create a weak reference in Objective-C?
I have an object of class Row that needs to release numerous objects of the class Block. Every Block currently has a property that retains an instance variable of class Row. Every Row contains an ...
14
votes
5answers
3k views
Weak events in .NET?
If object A listens to an event from object B, object B will keep object A alive.
Is there a standard implementation of weak events that would prevent this?
I know WPF has some mechanism but I am ...
12
votes
7answers
536 views
Pros and Cons of Listeners as WeakReferences
What are the pros and cons of keeping listeners as WeakReferences.
The big 'Pro' of course is that:
Adding a listener as a WeakReference means the listener doesnt need to bother 'removing' itself.
...
11
votes
2answers
582 views
How does weak_ptr work?
I understand how to use weak_ptr and shared_ptr. I understand how shared_ptr works, by counting the number of references in its object. How does weak_ptr work? I tried reading through the boost source ...
11
votes
1answer
314 views
What did I do that made “weak refs processing” take 30 sec instead of 1.5 sec?
The story
My server is running with 24x2 processors, and the java heap is about 70 GB.
At some point after installing a new version (version-B), I saw that Full GC is taking around 30sec (stopping ...
10
votes
3answers
252 views
Which of these objects are eligible for garbage collection?
This is a question I was asked at my interview recently: Which 'Random' object(s) would get collected during the 'GC.Collect()' call?
String a = new Random().Next(0, 1) ==1 ? "Whatever 1" : "Whatever ...
9
votes
2answers
141 views
Are C# weak references in fact soft?
The basic difference is that weak references are supposed to be claimed on each run of the GC (keep memory footprint low) while soft references ought to be kept in memory until the GC actually ...
9
votes
1answer
3k views
How to use WeakReference in Java and Android development?
I have been a java developer 2 years. But I have never wrote a WeakReference in my code. How to use WeakReference to make my application more efficiency especially in Android application.
9
votes
2answers
353 views
How to avoid memory leaks in callback?
Effective Java says:
A third common source of memory leaks
is listeners and other callbacks. If
you implement an API where clients
register callbacks but don’t
deregister them explicitly, ...
9
votes
3answers
384 views
Can a conforming C# compiler optimize away a local (but unused) variable if it is the only strong reference to an object?
See also these related resources:
Does the .NET garbage collector perform predictive analysis of code? (on Stack Overflow)
WP7: When does GC Consider a Local Variable as Garbage (blog ...
9
votes
4answers
863 views
Suitable collection class for event listeners in Java
Related:
http://stackoverflow.com/questions/1391918/does-java-have-a-linkedconcurrenthashmap-data-structure
I am looking for a collection class to hold references to event listeners.
Ideally I ...
9
votes
3answers
1k views
Java's WeakHashMap and caching: Why is it referencing the keys, not the values?
Java's WeakHashMap is often cited as being useful for caching. It seems odd though that its weak references are defined in terms of the map's keys, not its values. I mean, it's the values I want to ...
8
votes
2answers
297 views
Objective-C - ARC - NSNumber - Segmentation Fault
I have an objective-C program and I am using ARC (Automatic Reference Counting), it throws a segmentation fault in line 23 (see program below).
Question
1) Why does the segmentation fault occur ?
...
8
votes
2answers
371 views
How does the Garbage Collector decide when to kill objects held by WeakReferences?
I have an object, which I believe is held only by a WeakReference. I've traced its reference holders using SOS and SOSEX, and both confirm that this is the case (I'm not an SOS expert, so I could be ...
8
votes
3answers
298 views
How to do compare and increment atomically?
In my attempt to develope a thread-safe C++ weak pointer template class, I need to check a flag that indicating the object is still alive, if yes then increment the object's reference count and I need ...
8
votes
3answers
448 views
What happens to a WeakReference after GC of WeakReference.Target
What happens to the WeakReference when the target object referenced by WeakReference.Target has been garbage collected? Does the WeakRerence stay alive and keeps existing?
The reason why I am asking ...
8
votes
1answer
1k views
finding weak reference objects in collections in java
A couple of questions regarding Java's WeakReference and Collections:
Is there a library out there that implements Java's various data-set interfaces (eg Collection, List, Set, Queue etc) with ...
8
votes
4answers
1k views
weakref list in python
I'm in need of a list of weak references that deletes items when they die. Currently the only way I have of doing this is to keep flushing the list (removing dead references manually).
I'm aware ...
7
votes
3answers
106 views
Are WeakHashMap cleared during a full GC?
I encountered some troubles with WeakHashMap.
Consider this sample code:
List<byte[]> list = new ArrayList<byte[]>();
Map<String, Calendar> map = new WeakHashMap<String, ...
7
votes
1answer
95 views
Trying to understand Microsoft's implementation of WeakReference
As a seasoned C++ programmer trying to get accustomed to .NET, there's an implementation detail in Microsoft's WeakReference "Target" property that's bugging me...
public class WeakReference : ...
7
votes
1answer
338 views
Indexable weak ordered set in Python
I was wondering if there is an easy way to build an indexable weak ordered set in Python. I tried to build one myself. Here's what I came up with:
"""
An indexable, ordered set of objects, which ...
7
votes
2answers
708 views
IBOutlet and viewDidUnload under ARC
There is a similar question to this on SO here, however I just want to clarify something that wasn't fully explained there.
I understand that all delegates and outlets - in fact any reference to a ...
7
votes
2answers
919 views
How do weak and strong references look like in objective-c?
Wikipedia states "In computer programming, a weak reference is a reference that does not protect the referenced object from collection by a garbage collector". How do those two types of references ...
7
votes
3answers
230 views
In Perl, why does copying a weak reference create a normal, strong, reference?
Scalar::Util::weaken says:
NOTE: Copying a weak reference creates a normal, strong, reference.
I can't understand why Perl handle it this way. In my applications, I use
weaken to break cycles. ...
7
votes
3answers
923 views
weak references and garbage collection
Suppose I have a weak reference to a car which has an ordinary reference to an engine. No other references to the car or the engine exist. Can the engine be garbage collected?
7
votes
1answer
1k views
Cost of using weak references in Java
Has anyone researched the runtime costs involved in creating and garbage collecting Java WeakReference objects? Are there any performance issues (e.g. contention) for multi-threaded applications?
...
7
votes
5answers
1k views
C#: Notification before WeakReference is collected?
In C#/.NET, is there any way to get a notification before the object pointed to by a weak reference is destructed? Basically, I want to allow an object to be collected, but do something right before ...
7
votes
2answers
379 views
Why doesn't the weakref work on this bound method?
I have a project where i'm trying to use weakrefs with callbacks, and I don't understand what I'm doing wrong. I have created simplified test that shows the exact behavior i'm confused with.
Why is ...
6
votes
1answer
117 views
Is there a way to FORCE weak and/or soft referenced objects to be GC'd in Java?
Here's my use case. We are trying to narrow down a potential memory leak in an application, and we are using a memory analysis tool to snapshot the heap so we can look for object instances and ...
6
votes
2answers
121 views
How can I maintain a weak reference on a COM object in C++?
In my application, I'm hooking various functions for creating COM objects (such as CoCreateInstanceEx) to get notified whenever some object is created. I'm keeping track of all created objects in a ...
6
votes
4answers
1k views
Compacting a WeakReference Dictionary
I've got a class Foo with a property Id. My goal is that there are no two instances of Foo with the same Id at the same time.
So I created a factory method CreateFoo which uses a cache in order to ...
6
votes
4answers
793 views
When should weak references be used?
I recently came across a piece of Java code with WeakReferences - I had never seen them deployed although I'd come across them when they were introduced. Is this something that should be routinely ...
6
votes
8answers
2k views
Why are weak pointers useful?
I've been reading up on garbage collection looking for features to include in my programming language and I came across "weak pointers". From here:
Weak pointers are like pointers,
except that ...
6
votes
4answers
2k views
Does WeakReference make a good cache?
i have a cache that uses WeakReferences to the cached objects to make them automatically removed from the cache in case of memory pressure. My problem is that the cached objects are collected very ...
6
votes
3answers
773 views
How are weak references implemented?
I wonder how weak references work internally, for example in .NET or in Java. My two general ideas are:
"Intrusive" - to add list of weak references to the most top class (object class). Then, when ...
6
votes
8answers
1k views
Why doesn't .NET have a SoftReference as well as a WeakReference, like Java?
I really love WeakReference's. But I wish there was a way to tell the CLR how much (say, on a scale of 1 to 5) how weak you consider the reference to be. That would be brilliant.
Java has ...
5
votes
2answers
80 views
Is it possibile to hook objects being collected by GC?
Suppose I have a WeakReference of a target strong reference. I'd like to be informed when the target object itself is being collected by the GC. Is it possible?
EDIT: Adding code to the ...
5
votes
2answers
90 views
Block garbage collector while analyzing weak references
I'm experimenting with WeakReference, and I'm writing a code that checks if a weak reference is valid before returning a strong reference to the object.
if (weakRef.IsValid)
return ...
5
votes
1answer
733 views
EXC_BAD_ACCESS on objc_setAssociatedObject with -weak_library /usr/lib/libSystem.B.dylib linker flags
I have a EXC_BAD_ACCESS when I call objc_setAssociatedObject with the linker flags : -weak_library /usr/lib/libSystem.B.dylib linker flags.
I absolutely need the linker flag because of this, do ...
5
votes
3answers
207 views
Testing/Verifying a WeakReference
I'd like to verify that code setting up a WeakReference does not accidentally hold a strong reference to the referenced object. (Here's an example of how it is easy to accidentally do this.)
Does ...
5
votes
4answers
246 views
What's the state of a weak reference that has been manually enqueued?
What's the state of an object when you manually enqueue a reference?
this.s = "foo";
WeakReference<String> wr = new WeakReference<String>(this.s);
wr.enqueue();
All the documentation ...
5
votes
2answers
427 views
MATLAB weak references to handle class objects
While thinking about the possibility of a handle class based ORM in MATLAB, the issue of caching instances came up. I could not immediately think of a way to make weak references or a weak map, though ...
5
votes
3answers
460 views
Why does exist WeakHashMap, but absent WeakSet?
From J. Bloch
A ... source of memory leaks is
listeners
... The best way to ensure that
callbacks are garbage collected
promptly is to store only weak
references to them, for instance, ...
5
votes
6answers
1k views
Good implementation of weak dictionary in .Net
Where can I find good implementation of IDictionary which uses weak references inside?
Dictionary should be holding only weak references to values and eventually clean up itself of dead references.
...