Tagged Questions
10
votes
2answers
152 views
How to remove (non-intrusive) smart pointers from a cache when there are no more references?
Because of my noob reputation, I cannot reply to this Thread, in specific the accepted answer:
I never used boost::intrusive smart pointers, but if you would use shared_ptr smart pointers, you ...
10
votes
1answer
439 views
shared, weak and lazy pointers in C++
Is anyone aware of an implementation of shared_ptr and weak_ptr together with a lazy initialization partner? The requirements of the classes were:
A lazy_ptr class that allows a client to construct ...
8
votes
4answers
3k views
boost, shared ptr Vs weak ptr? Which to use when?
I am using boost shared pointer from considerable time in my project.
Recently my fellow team mates have also started using weak pointers. I am not able to distinguish which to use when.
Apart from ...
6
votes
3answers
838 views
Avoiding indirect cyclic references when using shared_ptr and weak_ptr
I'm currently putting together an application that relies heavily on shared_ptr and everything looks good so far - I've done my homework and have a pretty good idea of some of the pitfalls of using ...
4
votes
5answers
604 views
Is it wise to provide access to weak_ptr in a library interface?
I have written a library that exposes references to several related object types. All of these objects have their lifetimes managed by the library internally via boost::shared_ptr
A user of the ...
3
votes
2answers
139 views
weak_ptr's weird copy constructors
the following are 2 of weak_ptr's constructors:
http://msdn.microsoft.com/en-us/library/bb982126.aspx
weak_ptr(const weak_ptr&);
template<class Other>
weak_ptr(const ...
2
votes
1answer
301 views
std::set of boost::weak_ptr<T> - Getting const_iterator to const T?
I have class containing an std::set of boost::weak_ptr<T>. I have two functions begin() and end() that return an iterator to the container. However, I don't want clients to be able to modify T. ...
2
votes
2answers
280 views
Weak pointer to this in constructor
I understand it is not possible to obtain a shared_ptr by calling shared_from_this() from the constructor of a class, as the object is not yet constructed. Is it possible however to obtain a weak_ptr ...
1
vote
4answers
137 views
Weak reference to a scoped_ptr?
Generally I follow the Google style guide, which I feel aligns nicely with the way I see things. I also, almost exclusively, use boost::scoped_ptr so that only a single manager has ownership of a ...
1
vote
1answer
122 views
Threading a Shared Model with pointers
I have a vector of pointers to objects created with new. Multiple threads access this vector in a safe manner with various gets/sets. However, a thread may delete one of the objects, in which case ...
1
vote
2answers
905 views
What's the performance penalty of weak_ptr?
I'm currently designing a object structure for a game, and the most natural organization in my case became a tree. Being a great fan of smart pointers I use shared_ptr's exclusively. However, in this ...
0
votes
3answers
65 views
Boost shared_from_this and destructor
I found that it is not allowed to call shared_from_this in the destructor from a class:
https://svn.boost.org/trac/boost/ticket/147
This behavior is by design. Since the destructor will destroy ...
0
votes
2answers
92 views
c++: std::tr1::shared_ptr from this
I have the following code:
#include <memory>
class Foo;
typedef std::tr1::shared_ptr<Foo> pFoo_t;
class DoSomething
{
public:
static void doSomething( pFoo_t p) { printf( "doing ...
0
votes
1answer
138 views
STL implementation of MVP design pattern
I'm trying to implement an MVP pattern using STL and I have used *shared_ptr* and *weak_ptr* for "breaking the cycle" when having recurrent references.
class i_model;
class i_view;
class ...
0
votes
2answers
133 views
std::shared_ptr and double callback
I have some logic where I am using std::shared_ptrs to objects in an inheritance hierarchy. At one point I need to handle these objects depending on their real type, so I am using a double dispatch ...