Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
151 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
438 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 ...
7
votes
1answer
200 views

static_pointer_cast for weak_ptr

In c++0x, there is a std::static_pointer_cast for std::shared_ptr, but there is no equivalent method for std::weak_ptr. Is this intentional, or an oversight? If an oversight, how would I define an ...
6
votes
3answers
836 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
138 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
298 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
3answers
810 views

C++ boost::shared_ptr & boost::weak_ptr & dynamic_cast

I have something like this: enum EFood{ eMeat, eFruit }; class Food{ }; class Meat: public Food{ void someMeatFunction(); }; class Fruit: public Food{ void someFruitFunction(); }; ...
2
votes
1answer
219 views

Why was std::hash not defined for std::weak_ptr in C++0x?

After reading the discussion on operator< for std::weak_ptr, I can't see any reason why defining std::hash to use the control block for std::weak_ptr wouldn't work. I also can't believe that this ...
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
896 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
0answers
7 views

weak_ptr under BOOST_NO_MEMBER_TEMPLATES

I was trying to decipher the implementation of smart pointers in boost and found out that the simplest implementation of shared_ptr is hidden under the BOOST_NO_MEMBER_TEMPLATES flag. With this flag, ...
0
votes
3answers
63 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
91 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 ...