Tagged Questions
The reference-counting tag has no wiki summary.
18
votes
3answers
578 views
Calling -retainCount Considered Harmful
Or, Why I Didn't Use retainCount On My Summer Vacation
This post is intended to solicit detailed write-ups about the whys and wherefores of that infamous method, retainCount, in order to consolidate ...
18
votes
8answers
5k views
Why no Reference Counting + Garbage Collection in C#?
I come from a C++ background and I've been working with C# for about a year. Like many others I'm flummoxed as to why deterministic resource management is not built-in to the language. Instead of ...
15
votes
1answer
824 views
Does WinRT have Garbage Collection?
Does WinRT have Garbage Collection?
Or does it do reference counting as does COM?
12
votes
1answer
291 views
Why does this string have a reference count of 4? (Delphi 2007)
This is a very Delphi specific question (maybe even Delphi 2007 specific). I am currently writing a simple StringPool class for interning strings. As a good little coder I also added unit tests and ...
12
votes
1answer
325 views
Why does Python keep a reference count on False and True?
I was looking at the source code to the hasattr built-in function and noticed a couple of lines that piqued my interest:
Py_INCREF(Py_False);
return Py_False;
...
Py_INCREF(Py_True);
return ...
12
votes
2answers
2k views
WeakReference implementation in .NET
I understand and appreciate the usefulness of the System.WeakReference class in the .NET framework, but am curious as to the implementation details.
How is WeakReference implemented in .NET? MSDN ...
12
votes
7answers
6k views
How to implement thread safe reference counting in C++
How do you implement an efficient and thread safe reference counting system on X86 CPUs in the C++ programming language?
I always run into the problem that the critical operations not atomic, and ...
10
votes
6answers
139 views
Adding non NSObjects to NSMutableArray
This recent SO discussion has confused me. The NSMutableArray prototype for addObject: is
- (void)addObject:(id)anObject
and id is defined in objc.h as
typedef struct objc_class *Class;
typedef ...
10
votes
9answers
7k views
How to go about fixing a memory leak in PHP
My PHP app has an import script that can import records.
At the moment, it is importing from a CSV file. It is reading each line of the CSV file, one line at a time using fgetcsv, and for each line ...
10
votes
6answers
1k views
Why don't purely functional languages use reference counting?
In purely functional languages, data is immutable. With reference counting, creating a reference cycle requires changing already created data. It seems like purely functional languages could use ...
9
votes
5answers
277 views
Garbage Collection in Java
On the slides I am revising from it says the following:
Live objects can be identified either by maintaining a count of the number of references to each object, or by tracing chains of references ...
9
votes
5answers
1k views
Why VC++ Strings are not reference counted?
STL standard do not require from std::string to be refcounted. But in fact most of C++
implementations provide refcounted, copy-on-write strings, allowing you passing
string by value as a primitive ...
8
votes
3answers
886 views
What are the advantages and disadvantages of using ARC?
What are the advantages and disadvantages of using the new automatic reference counting (ARC) memory management style in an iOS project?
Can you choose not to use ARC when developing with the iOS 5.0 ...
8
votes
10answers
1k views
Is it possible to intercept (or be aware of) COM Reference counting on CLR objects exposed to COM
I have rephrased this question.
When .net objects are exposed to COM Clients through COM iterop, a CCW (COM Callable Wrapper) is created, this sits between the COM Client and the Managed .net object.
...
7
votes
1answer
321 views
Xcode static analyzer and copyWithZone
The Xcode 4 static analyzer flags this method as a having an over-released return value when that does not seem to be the case.
- (id)copyWithZone:(NSZone *)zone
{
return [[[self class] ...
7
votes
1answer
208 views
Making a reference-counted object in D using RefCounted!(T)
How do you use std.typecons.RefCounted!(T) to make a reference-counted object in D?
I've tried to figure out what std.array.Array does internally by looking at the source, but while I can read the ...
7
votes
8answers
2k views
What solutions are there for circular references?
When using reference counting, what are possible solutions/techniques to deal with circular references?
The most well-known solution is using weak references, however many articels about the subject ...
7
votes
8answers
1k views
How to detect cycles when using shared_ptr
shared_ptr is a reference counting smart pointer in the Boost library.
The problem with reference counting is that it cannot dispose of cycles. I am wondering how one would go about solving this in ...
7
votes
9answers
3k views
What is the best way to implement smart pointers in C++?
I've been evaluating various smart pointer implementations (wow, there are a LOT out there) and it seems to me that most of them can be categorized into two broad classifications:
1) This category ...
6
votes
5answers
1k views
Does C++/CX detect and solve cycles of objects?
From my understanding C++/CX doesn't use garbage collection, it use a reference counted approach instead.
The problem with reference counting is that it cannot dispose of cycles. Cycles are usually ...
5
votes
1answer
80 views
Object with retain count 0 doesn't get released
Why is my object in the following leak trace doesn't get released?
The trace says its reference count is 0, so why doesn't it get released?
The object is a custom class that derives directly from ...
5
votes
2answers
197 views
Designing a shader class
Since I have started learning OpenGL, I thought I would as well write a small C++ framework (for myself) to avoid the nausea that the excessive use of C-ish code is apparently causing. :) Since I am ...
5
votes
4answers
152 views
how can one force deletion of an object in python?
I am curious about the details of __del__ in python, when and why it should be used and what it shouldn't be used for. I learned the hard way that it is not really like what i'd naively expected from ...
5
votes
5answers
368 views
How do you efficiently debug reference count problems in shared memory?
Assume you have a reference counted object in shared memory. The reference count represents the number of processes using the object, and processes are responsible for incrementing and decrementing ...
5
votes
3answers
357 views
Microsoft objects, the Release() functions return value?
I'm curious because I couldn't find out about this on MSDN. I've found the Release() function is present in various COM objects which I'm obviously supposed to use for deleting pointers. But I'm not ...
5
votes
8answers
1k views
Reference-counting for objects
In my code I use a small data-storing class, which is created in different places. To avoid memory leaks and simplify things, I want to use reference counting, so I did
type TFileInfo = class ...
4
votes
1answer
148 views
Should I refer to self.property in the init method with ARC?
A quick question.
if I have a property and an ivar declared with the same name:
in the .h file:
(Reminder*)reminder;
@property(nonatomic,strong)(Reminder*)reminder;
in the .m file, should I use ...
4
votes
5answers
237 views
Is there a non-reference-counted base class like TInterfacedObject?
I need a base class like TInterfacedObject but without reference counting (so a kind of TNonRefCountedInterfacedObject).
This actually is the nth time I need such a class and somehow I always end up ...
4
votes
5answers
228 views
Can multiple string variables really refer to the same data?
According to the information in the internet I found out that two following variables
point to the same place in memory.
Could anyone propose a code example to demonstrate that in fact it is true ...
4
votes
2answers
386 views
Python reference count and ctypes
Hallo,
I have some troubles understanding the python reference count.
What I want to do is return a tuple from c++ to python using the ctypes module.
C++:
PyObject* foo(...)
{
...
return ...
4
votes
2answers
535 views
Reference-counting of std::string
I'm looking at the code for basic_string (that is bundled with g++ 4.2.1). The copy constructor makes use of a grab() function to "grab" a copy of a string (increment its reference-count):
_CharT* ...
4
votes
3answers
205 views
Is it okay to implement reference counting through composition?
Most common re-usable reference counted objects use private inheritance to implement re-use. I'm not a huge fan of private inheritance, and I'm curious if this is an acceptable way of handling things:
...
4
votes
3answers
432 views
sample code or projects using simple reference counter in C
I am wondering how difficult it would be to integrate a reference counting (or other managed memory) regime for managing some of my struct libraries in C. What sample code would you recommend I look ...
4
votes
2answers
322 views
Delphi: Since when are interface references no longer released at the end of a with-block?
I recently stumbled over a problem caused by some very old code I wrote which was obviously assuming that interface references used in a with statement would be released as soon as the with-block is ...
4
votes
6answers
887 views
x86 equivalent for LWARX and STWCX
I'm looking for an equivalent of LWARX and STWCX (as found on the PowerPC processors) or a way to implement similar functionality on the x86 platform. Also, where would be the best place to find out ...
3
votes
1answer
106 views
using std::tr1:shared_ptr as an internal mechanism for reference counting
Is it safe and correct to use an std::tr1::shared_ptr as in the sample code below, for the purpose of reference counting? (this is just a particular sample, the class can contain anything else (void*) ...
3
votes
5answers
83 views
Why doesn't the JVM destroy a resource as soon as its reference count hits 0?
I have always wondered why the garbage collector in Java activates whenever it feels like it rather than do:
if(obj.refCount == 0)
{
delete obj;
}
Are there any big advantages to how Java does ...
3
votes
2answers
130 views
shared_ptr<> is not required to use reference count?
Do I understand the new Std right that shared_ptr is not required to use a reference count? Only that it is likely that it is implemented this way?
I could imagine an implementation that uses a ...
3
votes
1answer
63 views
Is assigning self.string = @“” on an @property that's (retain)'d proper?
A philosophical question, of sorts. Is it proper to assign a constant string to an @property that's (retained)? Or, should I do self.string = [NSString stringWithString:@""];
Is there a memory ...
3
votes
1answer
175 views
What does cpython do to help detect object cycles(reference counting)?
From what I've read about cpython it seems like it does reference counting + something extra to detect/free objects pointing to each other.(Correct me if I'm wrong). Could someone explain the ...
3
votes
2answers
475 views
Is a dynamic array automatically deallocated when it goes out of scope?
in this example
procedure foobar;
var tab:array of integer;
begin
setlength(tab,10);
end;
is the array destroyed or the memory is leaking?
3
votes
2answers
330 views
Are there any Python reference counting/garbage collection gotchas when dealing with C code?
Just for the sheer heck of it, I've decided to create a Scheme binding to libpython so you can embed Python in Scheme programs. I'm already able to call into Python's C API, but I haven't really ...
3
votes
6answers
278 views
To get reference counting, do I have to clutter my APIs with shared_ptr?
I recently had the following memory bug, which is easy to spot here, but can be harder to detect in more complex code:
class Foo : public IFoo {
const Bar& bar_;
public:
Foo(const Bar& ...
3
votes
3answers
214 views
How to better initialize a reference counter for a non-creatable COM object?
I have a COM interface with a method that returns an object:
interface ICreatorInterface {
HRESULT CreateObject( IObjectToCreate** );
};
The key is that calling ...
3
votes
3answers
416 views
Code Example: Why can I still access this NSString object after I've released it?
I was just writing some exploratory code to solidify my understanding of Objective-C and I came across this example that I don't quite get. I define this method and run the code:
- (NSString ...
3
votes
10answers
2k views
C++: Multi threading and reference counting
Currently ive got some reference counted classes using the following:
class RefCounted
{
public:
void IncRef()
{
++refCnt;
}
void DecRef()
{
if(!--refCnt)delete ...
2
votes
1answer
135 views
Why retain/release rather than new/delete?
I'm newbie to objective-C, I feel comportable in C++.
My question is:
Why language designer of obj-c proper to use retain/release rather then use new/delete(=alloc/dealloc) only?
Maybe my brain is ...
2
votes
1answer
69 views
Reference counting GC in languages with pointer arithmetic
I was wondering if it is possible to implement reference counting-based GC in languages which allow pointer arithmetic. For example (this is pseudo-C),
int* f()
{
int array[5] = { 1, 2, 3, 4, 5 ...
2
votes
1answer
64 views
ipython and reference counts
It would appear that ipython may be retaining references to objects when I'm not expecting it to.
Consider the following script (grc.py):
import sys
obj = []
print sys.getrefcount(obj)
When I run ...
2
votes
2answers
452 views
Initializing a property, dot notation
Is it a bad idea to use the dot notation to initialize retain properties to nil in my init methods?
With any ordinary property like this:
@property (nonatomic, retain) id foo;
Say in my init ...