The weak-ptr tag has no wiki summary.
1
vote
2answers
85 views
What's the difference between raw pointer and weak_ptr?
As in title. This question probably already has an answer but I failed to find one.
3
votes
0answers
70 views
boost range weak_ptr
I have a map where the value is a weak pointer. This works:
While I can write this:
for_each( IFoo::foo_wptr obj, objects | range::map_values ) {
IFoo::foo_ptr myObj = obj.lock();
if( myObj ) ...
0
votes
0answers
28 views
Will gcc optimize weak_ptr.lock().get() to avoid refcount increment/decrement?
I have an object managed with shared_ptr; I also have weak_ptr associated with this shared_ptr; I know the pointer is not dangling. I would like to obtain the raw pointer as efficiently as possible.
...
0
votes
3answers
52 views
Automatically adding and removing an object from a list
I have a class. When this class is instantiated, I want the instance added to a list. When the object is deleted, I want it removed from the list.
So I give the object a shared pointer to itself. I ...
0
votes
2answers
601 views
How to make a c++11 std::unordered_set of std::weak_ptr
I have a set like this: set<weak_ptr<Node>, owner_less<weak_ptr<Node> > > setName;
It works fine. But I would like to change it to an unordered set. However, I get about six ...
3
votes
1answer
240 views
Do I have to use weak_ptr.lock() just to test if it points to a valid object?
It seems kind of inefficient to have to create a temporary shared_ptr just to see if the weak_ptr is pointing to a valid object. I don't want to even access the object. This is because I have a ...
5
votes
3answers
248 views
Having a vector of weak_ptr, want to return a vector of shared_ptr
I'm currently working on a big project and I need to use weak_ptr instead of shared_ptr.
Here is my problem.
I have a class named House with an attribute: ...
1
vote
1answer
187 views
shared_ptr and cyclic references
I was trying with the cyclic references for boost::shared_ptr, and devised following sample:
class A{ // Trivial class
public:
i32 i;
A(){}
A(i32 a):i(a){}
~A(){
...
2
votes
1answer
586 views
Equality-compare std::weak_ptr
I want to compare two std::weak_ptr's or one std::weak_ptr and one std::shared_ptr for equality.
What I want to know is whether the object each of the weak_ptr's/shared_ptr's point to is the same.
...
4
votes
1answer
171 views
Comparing weak_ptr to raw pointer doesn't work, looking for alternative
I have a SpriteManager class that loads and caches sprites for me, and removes unused sprites from the cache. That's the idea anyways, I'm a bit stuck. I have a ...
2
votes
4answers
766 views
Binding to a weak_ptr
Is there a way to std::bind to a std::weak_ptr? I'd like to store a "weak function" callback that automatically "disconnects" when the callee is destroyed.
I know how to create a std::function using ...
2
votes
0answers
52 views
Is there a good C++ memory management tutorial available, that covers shared_ptr, scoped_ptr, and weak_ptr? [duplicate]
Possible Duplicate:
Which kind of pointer do I use when?
I'm a former C++ programmer, turned .NET programmer. My knowledge of C++ memory management dates back to the early 2000's, and I ...
0
votes
1answer
111 views
Same address, multiple “shared_ptr”s, enable_shared_from_this & custom deleter
Related to Same address, multiple shared_ptr counters, is it forbidden by C++ standard? and myriad other questions around multiple shared_ptr objects pointing to the same object but not sharing the ...
1
vote
2answers
356 views
why i can't cast nullptr to weak_ptr<>
class MyClass {
public:
MyClass(std::weak_ptr<MyClass> parent){}
}
i want to do this:
auto newInstance = std::make_shared<MyClass>(nullptr);
or default value of weak_ptr argument ...
1
vote
1answer
190 views
How do I get std::weak_ptr<MyClass> from this pointer?
Here is the example:
tempalate <class T> class MyClass : public T {
public:
MyClass(std::weak_ptr<MyClass> parent) {
//--------------------------------------+
...
3
votes
2answers
228 views
Comparator operator in weak_ptr C++
I am still a novice in the new stl members.Can anyone point out why this code is giving segmentation fault?
#include<memory>
#include<stdio.h>
#include<map>
#include<set>
...
2
votes
4answers
223 views
In well designed code should you expect locking of weak_ptr to always succeed?
When you wish to make an access using a weak pointer, you are first advised to get a strong pointer to the pointed object by locking. Locking may not succeed in case the pointed object was deleted ...
1
vote
3answers
157 views
How can I do this with Smart Pointers?
Here's what I'm trying to achieve:
#include <iostream>
using std::cout;
#include <vector>
using std::vector;
int main()
{
vector<int> a {3, 7};
int *p = &a.at (0); ...
12
votes
1answer
317 views
Why doesn't std::weak_ptr<> provide a bool conversion?
C++11's std::shared_ptr<> provides a kind of bool operator.
operator unspecified-bool-type() const;
(It's not a straight-up operator bool() const due to the dangers from implicit casting of type ...
0
votes
1answer
573 views
boost::weak_ptr<T>.lock() Crashes with a SIGSEGV Segmentation Fault
(EDIT) Environment:
plee@sos-build:/usr/local/include/boost$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 11.10
Release: 11.10
Codename: ...
0
votes
1answer
100 views
How do I construct an object that holds a reference to a parent using a weak_ptr?
Say I have an object that contains a shared_ptr to a child object.
I want the child object to have a weak_ptr to the parent object, what should the child object's constructor look like and how should ...
1
vote
3answers
825 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 ...
13
votes
2answers
434 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 ...
11
votes
1answer
685 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 ...
0
votes
2answers
703 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
347 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 ...
4
votes
2answers
301 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 ...
1
vote
4answers
361 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 ...
9
votes
1answer
613 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 ...
0
votes
2answers
278 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 ...
2
votes
1answer
699 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. ...
1
vote
1answer
219 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 ...
2
votes
3answers
2k 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
322 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 ...
4
votes
2answers
706 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 ...
4
votes
2answers
2k 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 ...
7
votes
3answers
2k 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 ...
19
votes
4answers
8k 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 ...
4
votes
5answers
708 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 ...