Tagged Questions
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
837 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 ...
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
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
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 ...