4
votes
10answers
943 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:
…
2
votes
3answers
96 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:
…
0
votes
1answer
52 views
Python: pass c++ object to a script, then invoke extending c++ function from script.
First of all, the problem is that program fails with double memory freeing ...
The deal is:
I have
FooCPlusPlus *obj;
and I pass it to my script. It works fine. Like this:
Py …
2
votes
5answers
204 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 …
1
vote
1answer
64 views
How can I get reference count for a managed object?
.NET profilers can show reference count to managed objects. How do they count them?
10
votes
1answer
137 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_T …
3
votes
8answers
360 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 abo …
2
votes
2answers
186 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 …
0
votes
4answers
460 views
How to implement reference counted objects in Delphi
I have a graph like structure. I don't know exactly when to destroy the objects in traditional Delphi manner, instead I would like to implement something like reference counted obj …
4
votes
5answers
466 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 val …
3
votes
10answers
564 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 …
1
vote
4answers
276 views
C++ Storing large data in std::list<> ..should I use reference counting?
How do people normally manage copying a list of large objects around?
Here's my situation:
Currently I have this:
typedef std::vector<float> Image;
and I'm storing it in …
3
votes
2answers
183 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 implement …
0
votes
1answer
69 views
How can I determine if an object is reachable within an object graph in C#?
I have a pretty complex object graph G with an object o1 in G. G is to be written into a database using NHibernate. However, if there already is a persistent entry of o1 (let's cal …
3
votes
6answers
333 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 articel …
