Tagged Questions

Smart pointer class allowing shared access

learn more… | top users | synonyms (2)

30
votes
13answers
11k views

C++ - passing references to boost::shared_ptr

If I have a function that needs to work with a shared_ptr, wouldn't it be more efficient to pass it a reference to it (so to avoid copying the shared_ptr object)? What are the possible bad side ...
25
votes
5answers
2k views

The cost of passing by shared_ptr

I use std::tr1::shared_ptr extensively throughout my application. This includes passing objects in as function arguments. Consider the following: class Dataset {...} void f( shared_ptr< Dataset ...
25
votes
13answers
4k views

What are potential dangers when using boost::shared_ptr?

What are some ways you can shoot yourself in the foot when using boost::shared_ptr? In other words, what pitfalls do I have to avoid when I use boost::shared_ptr?
22
votes
4answers
8k views

static_cast with boost::shared_ptr?

What is the equivalent of a static_cast with boost::shared_ptr? In other words, how do I have to rewrite the following Base* b = new Base(); Derived* d = static_cast<Derived*>(b); when ...
22
votes
6answers
11k views

NULL pointer with boost::shared_ptr?

What's the equivalent to the following: std::vector<Foo*> vec; vec.push_back(NULL); when dealing with boost::shared_ptr? Is it the following code? std::vector< ...
21
votes
4answers
390 views

How do smart pointers choose between delete and delete[]?

Consider: delete new std :: string [2]; delete [] new std :: string; Everyone knows the first is an error. If the second wasn't an error, we wouldn't need two distinct operators. Now consider: ...
20
votes
5answers
704 views

Should I switch from using boost::shared_ptr to std::shared_ptr?

I would like to enable support for C++0x in GCC with -std=c++0x. I don't absolutely necessarily need any of the currently supported C++0x features in GCC 4.5 (and soon 4.6), but I would like to start ...
17
votes
5answers
909 views

What is boost's shared_ptr(shared_ptr<Y> const & r, T * p) used for?

boost::shared_ptr has an unusual constructor template<class Y> shared_ptr(shared_ptr<Y> const & r, T * p); and I am a little puzzled as to what this would be useful for. Basically ...
16
votes
5answers
611 views

Why do std::shared_ptr<void> work

I found some code using std::shared_ptr to perform arbitrary cleanup at shutdown. At first I thought this code could not possibly work, but then I tried the following: #include <memory> ...
15
votes
13answers
2k views

What's your convention for typedef'ing shared_ptr?

I'm flip-flopping between naming conventions for typedef'ing the boost::shared_ptr template. For example: typedef boost::shared_ptr<Foo> FooPtr; Before settling on a convention, I'd like to ...
15
votes
5answers
3k views

Questions on usages of shared_ptr - C++

I have few questions on the best practices of using shared_ptr. Question 1 Is copying shared_ptr cheap? Or do I need to pass it as reference to my own helper functions and return as value? Something ...
14
votes
5answers
389 views

questions regarding shared_from_this

I have a function which takes a shared_ptr<MyClass>. In some member function memfun of MyClass, I need to pass this to that function. But if I write void MyClass:memfun() { ...
14
votes
8answers
2k views

shared_ptr: horrible speed

When comparing two variants of pointers (classic/shared_pt) I was surprised by a significant increase of the running speed of the program. For testing 2D Delaunay incremental Insertion algorithm has ...
13
votes
3answers
1k views

pimpl: shared_ptr or unique_ptr

I've been making some objects using the pimpl idiom, but I'm not sure whether to used shared_ptr or unique_ptr. I understand unique_ptr is more efficient, but this isn't so much of an issue for me, ...
13
votes
13answers
1k views

What (not) to do in a constructor

I want to ask you for your best practices regarding constructors in C++. I am not quite sure what I should do in a constructor and what not. Should I only use it for attribute initializations, ...
13
votes
3answers
2k views

Are there any downsides with using make_shared to create a shared_ptr

Are there any downsides with using make_shared<T>() instead of using shared_ptr<T>(new T). Boost documentation states There have been repeated requests from users for a factory ...
13
votes
9answers
1k views

A Question On Smart Pointers and Their Inevitable Indeterminism

I've been extensively using smart pointers (boost::shared_ptr to be exact) in my projects for the last two years. I understand and appreciate their benefits and I generally like them a lot. But the ...
12
votes
4answers
328 views

Can deriving a class from 'enable_shared_from_this' increase performance?

make_shared is more performant than separately calling new and creating a shared_ptr because make_shared allocates space for the reference count and weak count in the same memory block as the client ...
12
votes
2answers
771 views

`enable_shared_from_this` has a non-virtual destructor

I have a pet project with which I experiment with new features of the upcoming C++0x standard. While I have experience with C, I'm fairly new to C++. To train myself into best practices, (besides ...
12
votes
6answers
1k views

How to handle 'this' pointer in constructor?

I have objects which create other child objects within their constructors, passing 'this' so the child can save a pointer back to its parent. I use boost::shared_ptr extensively in my programming as ...
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 ...
10
votes
1answer
180 views

Boost shared_ptr dereference cost

I am trying to compare performance between raw pointers, boost shared_ptr and boost weak_ptr. On the dereferencing part, I expected shared_ptr and raw_ptr to be equal, but results show that shared_ptr ...
10
votes
6answers
356 views

What's the best strategy for typedef'ing shared pointers?

I have a quick question regarding the use of typedefs for lengthy templates. The crux: I've found myself in something of a pickle—there doesn't seem to be a good place to place typedefs except local ...
10
votes
1answer
474 views

Differences between tr1::shared_ptr and boost::shared_ptr?

Are there any difference between tr1::shared_ptr and boost::shared_ptr? If so, what?
10
votes
3answers
514 views

How does shared_ptr<> safely allow casting to bool?

I was looking into how std::tr1::shared_ptr<> provides the ability to cast to bool. I've got caught out in the past when trying to create a smart pointer that can be casted to bool as the ...
10
votes
4answers
4k views

Where is shared_ptr?

I am so frustrated right now after several hours trying to find where shared_ptr is located. None of the examples I see show complete code to include the headers for shared_ptr (and working). Simply ...
10
votes
5answers
2k views

Is it safe to use STL (TR1) shared_ptr's between modules (exes and dlls)

I know that new-ing something in one module and delete-ing it in another can often cause problems in VC++. Problems with different runtimes. Mixing modules with staticly linked runtimes and/or ...
10
votes
10answers
2k views

Using boost::shared_ptr in a library's public interface

We have a C++ library that we provide to several different clients. Recently we made the switch from using raw pointers in the public interface to using boost::sharedptr instead. This has provided an ...
9
votes
3answers
159 views

How do I call ::std::make_shared on a class with only protected or private constructors?

I have this code that doesn't work, but I think the intent is clear: testmakeshared.cpp #include <memory> class A { public: static ::std::shared_ptr<A> create() { return ...
9
votes
1answer
202 views

Is a virtual destructor needed for your Interface, if you always store it in a shared_ptr?

Since boost::/std::shared_ptr have the advantage of type-erasing their deleter, you can do nice things like #include <memory> typedef std::shared_ptr<void> gc_ptr; int main(){ gc_ptr ...
9
votes
3answers
353 views

Can you use a boost::shared_ptr as a key for a map?

I may need to rethink my overall design a bit more, but as it stands, it looks like I may want to do something like: class A; class B; std::map<boost::shared_ptr<const A>, B> APtrToBMap; ...
9
votes
5answers
347 views

How do shared pointers work?

How do shared pointers know how many pointers point to that object? (shared_ptr, in this case)
9
votes
4answers
5k views

Is boost shared_ptr <XXX> thread safe?

I have a question about boost :: shared_ptr. There are lots of thread. class CResource { xxxxxx } class CResourceBase { public: void SetResource(shared_ptr<CResource> res) { m_Res = ...
8
votes
4answers
143 views

Should I pass a shared_ptr by reference?

What are the best practices for passing a shared_ptr? Currently I pass shared_ptr function arguments like so: void function1( shared_ptr<TYPE>& value );
8
votes
3answers
2k views

Custom (pool) allocator with boost shared_ptr

I want objects managed by a shared_ptr to be allocated from a pool, say Boost's Pool interface, how can this be achieved?
8
votes
4answers
1k views

C++ smart pointer const correctness

I have a few containers in a class, for example, vector or map which contain shared_ptr's to objects living on the heap. For example template <typename T> class MyExample { public: private: ...
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 ...
8
votes
4answers
1k views

Using shared_ptr in dll-interfaces

I have an abstract class in my dll. class IBase { protected: virtual ~IBase() = 0; public: virtual void f() = 0; }; I want to get IBase in my exe-file which loads dll. First way ...
8
votes
8answers
1k views

smart pointers + “this” considered harmful?

In a C++ project that uses smart pointers, such as boost::shared_ptr, what is a good design philosophy regarding use of "this"? Consider that: It's dangerous to store the raw pointer contained in ...
7
votes
2answers
157 views

Is the state of any standard class after being moved specified?

If I move shared_ptr 'a' into shared_ptr 'b' is 'a' guaranteed to be null? Is the state of any standard class after being moved specified?
7
votes
4answers
344 views

Locking a shared_ptr

I have an shared object that need to be send to a system API and extract it back later. The system API receives void * only. I cannot use shared_ptr::get() because it do not increases the reference ...
7
votes
2answers
192 views

Question about boost::make_shared

In the boost doc of make_shared, it says: Besides convenience and style, such a function is also exception safe and considerably faster because it can use a single allocation for both the ...
7
votes
2answers
457 views

how boost::~shared_ptr works?

when reading "Beyond the C++ Standard Library: An Introduction to Boost " ,I got a very interesting example: class A { public: virtual void sing()=0; protected: virtual ~A() {}; ...
7
votes
3answers
442 views

Is there a general smart pointer like auto_ptr and shared_ptr that doesn't need C++0x?

I'm wanting a non-reference counted smart pointer that can combine some of the useful aspects of auto_ptr and shared_ptr. I think that C++0x's unique_ptr is ultimately what I'd need, but I need ...
7
votes
4answers
699 views

shared_ptr by reference or by value?

When a function should take a boost::shared_ptr, are you passing it by const reference void foo(const boost::shared_ptr<T>& p) or by value void foo(boost::shared_ptr<T> p) ? I would ...
7
votes
3answers
378 views

How to accomplish covariant return types when returning a shared_ptr?

using namespace boost; class A {}; class B : public A {}; class X { virtual shared_ptr<A> foo(); }; class Y : public X { virtual shared_ptr<B> foo(); }; The return types aren't ...
7
votes
6answers
680 views

Finding boost::shared_ptr cyclic references

Is there any tips/tricks for finding cyclic references of shared_ptr's? This is an exmaple of what I'm trying to find - unfortunately I can't seem to find the loop in my code. struct A { ...
7
votes
8answers
1k views

How to detect cycles when using shared_ptr

shared_ptr is a reference counting smart pointer in the Boost library. The problem with reference counting is that it cannot dispose of cycles. I am wondering how one would go about solving this in ...
7
votes
7answers
3k views

How does a reference-counting smart pointer's reference counting work?

In other words, how does the implementation keeps track of the count? Is there a map-like object maintained which is accessible by all the shared_ptr instances whose key is the pointer's address and ...

1 2 3 4 5 9