Smart pointer class implementing shared ownership
68
votes
14answers
22k 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 ...
34
votes
4answers
18k 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 ...
22
votes
4answers
3k views
Passing shared pointers as arguments
If I declare an object wrapped in a shared pointer:
std::shared_ptr<myClass> myClassObject(new myClass());
then I wanted to pass it as an argument to a method:
DoSomething(myClassObject);
...
20
votes
4answers
3k 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, ...
16
votes
4answers
11k 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 = ...
12
votes
4answers
8k views
Differences between unique_ptr and shared_ptr [duplicate]
Possible Duplicates:
pimpl: shared_ptr or unique_ptr
smart pointers (boost) explained
Could someone explain differences between shared_ptr and unique_ptr?
22
votes
4answers
29k views
Example to use shared_ptr?
Hi I asked a question today about How to insert different types of objects in the same vector array and my code in that question was
gate* G[1000];
G[0] = new ANDgate() ;
G[1] = new ORgate;
//gate ...
16
votes
10answers
7k views
How to release pointer from boost::shared_ptr?
Can boost::shared_ptr release the stored pointer without deleting it?
I can see no release function exists in the documentation, also in the FAQ is explained why it does not provide release function, ...
13
votes
1answer
1k views
Why isn't there a std::shared_ptr<T[]> specialisation?
The standard provides a template specialization of std::unique_ptr which correctly calls the delete[] from its destructor:
void func()
{
std::unique_ptr< int[] > arr(new int[10]);
...
6
votes
2answers
2k views
Can I use boost::make_shared with a private constructor?
Consider the following:
class DirectoryIterator;
namespace detail {
class FileDataProxy;
class DirectoryIteratorImpl
{
friend class DirectoryIterator;
friend class ...
36
votes
13answers
8k 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?
48
votes
6answers
3k 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>
...
14
votes
9answers
7k views
std::auto_ptr or boost::shared_ptr for pImpl idiom?
When using the pImpl idiom is it preferable to use a boost:shared_ptr instead of a std::auto_ptr? I'm sure I once read that the boost version is more exception friendly?
class Foo
{
public:
...
8
votes
8answers
2k 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 ...
21
votes
14answers
4k 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
4answers
1k 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 ...
7
votes
1answer
4k views
How to avoid memory leak with boost::shared_ptr?
Consider the following code.
using boost::shared_ptr;
struct B;
struct A{
~A() { std::cout << "~A" << std::endl; }
shared_ptr<B> b;
};
struct B {
~B() { std::cout ...
9
votes
1answer
2k views
Differences between different flavours of shared_ptr
Are there any differences between boost::shared_ptr, std::tr1::shared_ptr and the upcoming (in C++0x) std::shared_ptr?
Will porting from one to another have any overhead or are they basically the ...
8
votes
5answers
3k views
Detach a pointer from a shared_ptr? [duplicate]
Possible Duplicate:
How to release pointer from boost::shared_ptr?
A function of my interface returns a pointer to an object. The user is supposed to take ownership of that object. I do not ...
5
votes
4answers
908 views
C++0x Error: overloading a function with std::shared_ptr to const argument is ambiguous
Suppose I have two unrelated classes A and B. I also have a class Bla that uses boost::shared_ptr like this:
class Bla {
public:
void foo(boost::shared_ptr<const A>);
void ...
0
votes
1answer
540 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: ...
36
votes
5answers
7k 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 ...
41
votes
4answers
16k 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 ...
38
votes
6answers
24k 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< ...
17
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 ...
19
votes
7answers
6k views
shared_ptr: horrible speed
When comparing two variants of pointers—classic vs. shared_ptr—I was surprised by a significant increase of the running speed of the program. For testing 2D Delaunay incremental Insertion ...
14
votes
4answers
10k views
shared_ptr vs scoped_ptr
scoped_ptr is not copy able and is being deleted out of the scope. So it is kind of restricted shared_ptr. So seems besides the cases when you really need to restrict the copy operation shared_ptr is ...
13
votes
6answers
3k 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 ...
18
votes
4answers
3k 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 ...
32
votes
6answers
5k 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++11 features in GCC 4.5 (and soon 4.6), but I would like to start ...
9
votes
4answers
3k 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 ...
13
votes
4answers
15k views
How to intentionally delete a boost::shared_ptr?
I have many boost::shared_ptr<MyClass> objects, and at some point I intentionally want to delete some of them to free some memory. (I know at that point that I will never need the pointed-to ...
10
votes
5answers
694 views
How do shared pointers work?
How do shared pointers know how many pointers point to that object? (shared_ptr, in this case)
7
votes
3answers
941 views
How can boost::serialization be used with std::shared_ptr from C++11?
I know that there is a boost module for serialization of boost::shared_ptr, but I cannot find anything for std::shared_ptr.
Also I don't know, how to implement it easily. I'm afraid that the ...
6
votes
4answers
477 views
Boost async_* functions and shared_ptr's
I frequently see this pattern in code, binding shared_from_this as the first parameter to a member function and dispatching the result using an async_* function. Here's an example from another ...
5
votes
1answer
770 views
Why is GoogleMock leaking my shared_ptr?
I use GoogleMock/GoogleTest for testing, and I'm seeing some strange behavior when a matcher has a shared_ptr to a mock as a parameter, and EXPECT is called on the same shared_ptr. The offending piece ...
4
votes
3answers
543 views
shared_ptr with malloc and free
I have working in large application which contain c and cpp. The all files saved as cpp extension but the code is written in c- style. I mean it is define structure rather than class allocate memory ...
12
votes
1answer
906 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?
8
votes
2answers
1k views
enable_shared_from_this (c++0x): what am I doing wrong?
I'm just toying around with the smart pointers in the upcoming new c++ standard. However I fail to grasp the usage of the shared_from_this function. Here is what I have:
#include <iostream>
...
7
votes
3answers
2k views
enable_shared_from_this - empty internal weak pointer?
I'm using enable_shared_from_this<Base> and then inherit from Base. When trying to use shared_from_this() in Derived's constructor (not initializer list), I get an exception. Turns out that the ...
2
votes
3answers
625 views
Using mem_fun_ref with boost::shared_ptr
Following the advice of this page, I'm trying to get shared_ptr to call IUnknown::Release() instead of delete:
IDirectDrawSurface* dds;
... //Allocate dds
return ...
0
votes
2answers
675 views
C++ volatile required when spinning on boost::shared_ptr operator bool()? [duplicate]
Possible Duplicate:
When to use volatile with multi threading?
I have two threads referencing the same boost::shared_ptr:
boost::shared_ptr<Widget> shared;
On thread is spinning, ...
13
votes
3answers
1k 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 );
4
votes
4answers
356 views
C++: Creating a shared object rather than a shared pointer to an object
boost::shared_ptr really bothers me. Certainly, I understand the utility of such a thing, but I wish that I could use the shared_ptr<A> as an A*. Consider the following code
class A
{
public:
...
3
votes
2answers
285 views
bad weak pointer when base and derived class both inherit from boost::enable_shared_from_this
I have a base class which derives from boost::enable_shared_from_this, and then another class which derives from both the base class and boost::enable_shared_from_this:
#include ...
3
votes
2answers
3k views
Usage of std::shared_ptr
How can I use std::shared_ptr for array of double? Additionally what are advantages/disadvantages of using shared_ptr.
2
votes
2answers
743 views
How can I call a private destructor from a shared_ptr?
I have a resource_manager class which maintains a std::vector<boost::shared_ptr<resource> > internally. resource_manager is a friend class of resource. I want resources to only be ...
2
votes
3answers
582 views
boost::shared_ptr question. Why does this work?
In experimenting with this question I created an example that I utterly do not understand. In particular, it highlights my misunderstanding of pointers, references, and the boost::shared_ptr.
...
2
votes
4answers
626 views
Is there a way to increase the efficiency of shared_ptr by storing the reference count inside the controlled object?
This is becoming a common pattern in my code, for when I need to manage an object that needs to be noncopyable because either A. it is "heavy" or B. it is an operating system resource, such as a ...
1
vote
2answers
717 views
C++ passing a derived class shared_ptr to a templated function
First something that should work, then something that doesn't. Why doesn't it is the question.
I declare two classes:
class Base { ... };
class Derived : public Base { ... };
I then have the ...
