Tagged Questions
The reference-count tag has no wiki summary.
7
votes
3answers
3k views
STL class for reference-counted pointers?
This should be trivial but I can't seem to find it (unless no such class exists!)
What's the STL class (or set of classes) for smart pointers?
UPDATE
Thanks for the responses,
I must say I'm ...
3
votes
4answers
1k views
What does assigning a literal string to an NSString with “=” actually do?
Greetings,
I'm sure that this is probably an incredibly stupid question, but...
What does the following line actually do?
string = @"Some text";
Assuming that "string" is declared thusly in the ...
1
vote
1answer
152 views
Reference Counted Objects and multiple Allocators
This is a design question, assuming C++ and a reference counted object hierarchy. A lot of classes in my codebase derive from a common base class (ObjectBase), which implements retain() and release() ...
1
vote
2answers
255 views
dynamic_cast of a COM object to a COM interface doesn't bump the reference count, does it?
If I have a C++ class, X, which implements the COM interfaces IY and IZ, and I have a pointer y to the IY interface of an object of type X, and I do this:
IZ *z = dynamic_cast<IZ *> ( y );
...
0
votes
0answers
7 views
concise release semantics
I've been objective-c programming for a while, and also have a Java & Smalltalk background so I'm loving that it gives many of the strengths of both. Way to go NeXT for trojaning this great ...