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 ...

learn more… | top users | synonyms (1)

1
vote
1answer
17 views

Why is ObjC block released when it captures a variable and not when it does not?

Example: extern void _objc_autoreleasePoolPrint(); int main(int argc, char *argv[]) { @autoreleasepool { id __weak blk; { int a = 10; blk = ^(NSString ...
0
votes
2answers
38 views

Using objc_setAssociatedObject with weak references

I know that OBJC_ASSOCIATION_ASSIGN exists, but does it zero the reference if the target object is dealloced? Or is it like the old days where that reference needs to get nil-ed or we risk a bad ...
3
votes
1answer
66 views

Explanation of weak self assignment using __typeof

I found an odd line of code in the REActivityViewController project on GitHub and cannot understand it. It appears to avoid casting the value to the exact class that it is declared as, but I do not ...
0
votes
1answer
16 views

Registering created object in outer @autoreleasepool block and strange __weak pointer behavior

Code: @autoreleasepool { id __autoreleasing obj = nil; @autoreleasepool { obj = [[NSObject alloc] init]; _objc_autoreleasePoolPrint(); } ...
0
votes
0answers
46 views

Why variable with __weak qualifier and __bridge cast retains an object? [duplicate]

I have following code: int main(int argc, char *argv[]) { void *pointer = NULL; @autoreleasepool { NSMutableArray *arr = [[NSMutableArray alloc] init]; pointer = ...
0
votes
0answers
25 views

Weak Reference on Locale in Android

Please check this code: TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); Locale loc = null; WeakReference<Locale> locWeak = new ...
0
votes
1answer
39 views

EXC_BAD_ACCESS when using weakSelf in block / blocks

I have been struggeling with this issue for a while since i don't think i fully understand the retain cycles. I am totally new to this and i'm trying to learn more about it. I am getting the ...
1
vote
1answer
30 views

Garbage Collection using Django's Session Middleware

NOTE: Sorry, but I don't have the required reputation score to post more then two links. The snippets posted below reference the following views and supporting class' __del__() method. I have a ...
2
votes
1answer
47 views

ObjC ARC: does a weak property's setter method run when the object is set to nil by ARC?

Really quick question (I could test it myself but not on a computer with Xcode): If ARC sets a weak property to nil, will the property's setter run with the parameter being nil, or is the property ...
4
votes
1answer
73 views

Why variable with __weak qualifier retains an object?

Here is my code: extern void _objc_autoreleasePoolPrint(); int main(int argc, const char * argv[]) { NSArray __weak *tmp = nil; @autoreleasepool { NSArray __strong *obj = ...
2
votes
2answers
49 views

How to prevent memory leakage in wxPython subclass?

I'm running Python 2.7, wxPython 2.8.12.1 and Windows 7. I am working on a program that passes large data objects to wx.Frame and creates interactive plots. The goal is to iterate through many data ...
0
votes
0answers
16 views

Is there a way to use WeakReference<View> to implement View recycling?

I want to make a View recycler so I can enclose a CursorAdapter inside a PagerAdapter, so I can use cursor-generate views in a PagerAdapter. I would like to recycle views if possible. As I ...
0
votes
2answers
47 views

Strong References (Objective -C)

I'm trying to better understand Strong References, but in the context of a particular example that I will list below. Lets say that I have a global variable called gPrefs. It's of type Preference ...
2
votes
1answer
54 views

WeakHashMap with types like Long, Int or String

While doing some researches about how to pass a object reference in android I was thinking about the following. Let's assume I have a WeakHashmap with Long as keys. And now I put one Object into this ...
2
votes
1answer
72 views

Weak property is set to nil in dealloc but property's ivar is not nil

I noticed the following in Objective-C with ARC enabled: Let's have simple class A and autosynthesized weak property @interface A @property (nonatomic, weak) id refObject; @end @implementation A ...
0
votes
1answer
75 views

Concurrent set with weak references and identity hash

I wanted a concurrent set with weak references to elements. I thought of doing this using Guava's MapMaker: Set<Object> concurrentSet = Collections.newSetFromMap( new MapMaker<Object, ...
6
votes
2answers
113 views

Prevent ARC to nil a weak ivar right after assignment (in release builds) [duplicate]

I have a auto-synthesized readonly & weak property: @property (nonatomic, readonly, weak) KTWindowController* windowController; I assign the synthesized ivar and then add it to an array: ...
6
votes
3answers
122 views

Weak references and `OutOfMemoryError`s

I have a SoundManager class for easy sound management. Essentially: public class SoundManager { public static class Sound { private Clip clip; // for internal use public void ...
0
votes
1answer
17 views

WeakEventManager for Windows Store Apps

I cannot find WeakEventManager for Windows Store Apps and wonder what should be used instead in order to prevent memory leaks.
8
votes
5answers
210 views

SQLiteOpenHelper synchronization

So I've come up with some idea and I'm wondering if it is realizable. Let's say I've multiple tables(database models) each of them is represented by some class.I don't wont to use singleton pattern ...
3
votes
3answers
101 views

Is there an NSMutableArray version of NSMapTable?

I want to keep a mutable array of weak references to a group of UIViews. NSMapTable is perfect for this need, except for one detail... NSMapTable wants a key for every value it holds. Is there ...
3
votes
1answer
92 views

Idle Simple Java Swing Application Memory Leaks

I'm currently investigating a memory leak in one of our applications. After further investigation, I came up with a test of two simple java swing applications that sit idle for almost 14 hours. Both ...
0
votes
1answer
29 views

WeakReference and ReferenceQueue performance matter

I use RefQueue, to track which WeakRef's are not pointing to object anymore. But I'm wonering how it works. When I tell WeakReference to register it self in particular queue, and then after some time ...
-1
votes
3answers
34 views

Map Size incorrect in Java.If i wrap Key and Value in WeakReference and then add into HashMap, printed size is different than expected

If i don't comment line 1 and comment line 2 ,line 1 causes outOfMemory Error.If i do the reverse it does not causes outOfMemory because Key,Value are wrapped in WeakReference. But i can't understand ...
5
votes
1answer
132 views

ConcurrentHashMap with weak keys and identity hash?

How do I get a ConcurrentHashMap with weak keys and identity hashes in Java? I think Google Guava Collections can give such a thing, but can I get it from the standard library? What other options do I ...
8
votes
3answers
135 views

Why isn’t my weak reference cleared right after the strong ones are gone?

I am a little bit stubborn, but I want to understand weak and strong references well, so that's why I'm asking you once again. Consider this: __weak NSString* mySecondPointer = myText; ...
6
votes
3answers
166 views

Garbage Collection should have removed object but WeakReference.IsAlive still returning true

I have a test that I expected to pass but the behavior of the Garbage Collector is not as I presumed: [Test] public void WeakReferenceTest2() { var obj = new object(); var wRef = new ...
0
votes
3answers
85 views

Can i compare WeakReference variables in java?

I have a HashMap<MyClass,ArrayList<WeakReference<MyObject>>> variable. Eventhough weakrefences are cleaned from the hashmap, i also want to be able to manually remove "MyObject" ...
1
vote
2answers
181 views

Simple Java hash map with weak keys based on identity in Google Guava?

I need a simple hash map with weak keys. Java's own WeakHashMap gives me that, but not with identity semantics (it uses equals() for key comparison). Google's Guava library has revamped its hash map ...
4
votes
2answers
101 views

Any practical example of long weak reference?

Is anybody has a pratical example of "long" weak reference (not short) ? Is this only for internal usage ?
4
votes
2answers
104 views

ARC weak ivar released before being returned - when building for release, not debug

I have a class that creates an object lazily and stores it as a weak property. Other classes may request this object, but must obviously keep a strong reference to it to keep the object from being ...
3
votes
3answers
190 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 ...
2
votes
2answers
99 views

Weak assembly changed to strong assembly

I have a plugin structure which all is compiled using weak assemblies. I want to change this now but running into some difficulties. interface.dll contains my interface for my plugins (IPlugin) ...
4
votes
2answers
487 views

Weak Event Pattern in MonoTouch

I used to develop iOS apps using the Objective-C language, and relied on the dealloc method to perform some cleanup/unregister tasks in my application. Now on the MonoTouch (garbage collected) it is ...
1
vote
1answer
46 views

Unit Testing Code with WeakReference

I didn't create the framework but I need to write test for it. The scenario... It uses WeakReference to hold an object, there's a base method that I call to assign object to it ...
0
votes
1answer
128 views

How to use Soft/WeakReference classes in a Android App?

I'm maintaining a big app with a huge number of images. My main problem is the app crashes when I use it because it produces out memory error. I'm trying to use SoftReferences and WeakReferences, I've ...
1
vote
2answers
27 views

WeakReferences, Unexpected Object deletion

My Understanding with Weak References: An object can’t be marked for deletion by gc till the time all the strong references to the object are lost/deleted. Which means if at some point, an object is ...
1
vote
3answers
71 views

How to get the target of a weak reference in a safe way

Consider this code: var weakRef = new WeakReference(new StringBuilder("Mehran")); if (weakRef.IsAlive) { // Garbage Collection might happen. Console.WriteLine((weakRef.Target as ...
1
vote
1answer
142 views

How can the Objective-C runtime know whether a weakly referenced object is still alive?

With the advent of ARC, some new functions were made available to allow developers to play around with weakly referenced objects. id objc_loadWeak(id *location) is one of them. This function receives ...
1
vote
1answer
24 views

How to call a constructor of a object that is also aWeakReference

So I have this: private WeakReference<ViewThread> mThread; And I want to call the constructor of ViewThread, like new ViewThread(this) and assign the resulting instance to mThread; But ...
0
votes
1answer
139 views

Memory-Leak Image-Gallery Android

I'm trying to implement an image gallery in android. The code based on http://www.mobisoftinfotech.com/blog/android/android-gallery-widget-example-and-tutorial/ and i've changed some details. I'm ...
1
vote
4answers
141 views

WeakReference string didn't garbage collected? How?

I'm reading about WeakReference in wikipedia and I saw this code public class ReferenceTest { public static void main(String[] args) throws InterruptedException { WeakReference r ...
8
votes
3answers
229 views

C# GC.Collect not destroy an object if it's constructed using instance constructor initializer [duplicate]

Possible Duplicate: Resurrection difference in using Object Initializer I am having a hard time trying to understand how garbage collector works in C# (I'm using 2012, so c# 4.5). Here is ...
0
votes
1answer
94 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
2answers
214 views

Using Java's ReferenceQueue

Do SoftReference and WeakReference realy only help when created as instance variables? Is there any benefit to using them in method scope? The other big part is ReferenceQueue. Besides being able ...
0
votes
0answers
74 views

Tracking the value of a variable in Python in real-time? [closed]

Here's the situation. I'm making a game in Python and Pygame. I want to include a mode for game balancing purposes that monitors certain statistics (points, levels, movement, etc.), and records the ...
0
votes
1answer
76 views

Weak global reference on Android 2.3 not working (JNI)

With JNI, I'm creating a weak global ref from a jobject. And later, when trying to access this reference, the dalvik vm crashes on Android 2.3 but not on 4.1 and 4.2. What I found out was that ...
10
votes
5answers
983 views

Collections of zeroing weak references under ARC

How can I get an array of zeroing weak references under ARC? I don't want the array to retain the objects. And I'd like the array elements either to remove themselves when they're deallocated, or set ...
1
vote
1answer
93 views

Why WeakReferences in RelayCommand?

I recently upgraded from MVVMLight 3 to 4, and noticed that my Commands broke. It turns out that the use of weak references in the new RelayCommand (implemented in version 3.5) were causing a code ...
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 2 3 4 5 7