Smart pointer class implementing shared ownership
3
votes
2answers
56 views
In gdb, I can call some class functions, but others “cannot be resolved”. Why?
I have not worked on shared pointers yet .. I just know the concept. I'm trying to debug functions in the following c++ class, which stores data of an XML file (read-in via the xerces library).
// ...
6
votes
1answer
143 views
make_shared and emplace functions
I was trying to find some easy way to emplace elements in a std::vector<std::shared_ptr<int>> but couldn't come with anything. std::shared_ptr takes pointers as parameters, so I can still ...
0
votes
1answer
28 views
C++/CLI “could not import member” warning when using shared_ptr as argument
I have the following interface in C++/CLI:
public interface class ISharedPtrInterface
{
void PrintSharedPtr(std::shared_ptr<std::wstring> ptr);
};
Which is implemented as follows:
public ...
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, ...
1
vote
1answer
93 views
Using std::shared_ptr to share data between producer/consumer threads
I am trying to use std::shared_ptr to point to the data being produced by one thread and consumed by another. The storage field is a shared pointer to the base class,
Here's the simplest Google Test ...
2
votes
4answers
598 views
friend function of std::make_shared()
how to make friend function of std::make_shared().
I tried:
class MyClass{
public:
friend std::shared_ptr<MyClass> std::make_shared<MyClass>();
//or
//friend ...
-1
votes
1answer
94 views
c++ vector of shared pointer. If casted outside of vector, will it change the pointer in vector?
I have a base class Base and 2 derived classes Child_A and Child_B.
By the time an object My_Object is instantiated (as a shared pointer), I don't know it's Child_A or Child_B. So it is instantiated ...
2
votes
4answers
56 views
Forward declarations and shared_ptr
I'm trying to refactor my code so that I use forward declarations instead of including lots of headers. I'm new to this and have a question regarding boost::shared_ptr.
Say I have the following ...
2
votes
1answer
146 views
Is it possible to downcast shared_ptr without copy?
#include <memory>
struct a {};
struct b : public a {};
std::shared_ptr<b> get()
{
std::shared_ptr<a> temp(new b);
return std::static_pointer_cast<b>(temp); // atomic ...
-3
votes
2answers
82 views
Polymorphism with smart pointers?
I've searched SO a bit but couldn't find anything that answers correctly my problem (I've read this, this and this )
I'm currently trying to use smart pointers with polymorphism.
When I try to ...
13
votes
2answers
3k views
std::shared_ptr thread safety explained
I'm reading http://gcc.gnu.org/onlinedocs/libstdc++/manual/shared_ptr.html and some thread safety issues are still not clear for me:
Standard guarantees that reference counting is handled thread ...
-2
votes
0answers
60 views
Destructor is not called [closed]
I have the following scheme in my application (simplified):
class CLauncher_Base
{
public:
CLauncher_Base() {}
virtual ~CLauncher_Base() = 0 {};
};
class CLauncher :
public ...
0
votes
1answer
67 views
sort on a vector of pointers changes data in a copy of the vector?
I have a vector of pointers to objects, and at some point, making a second vector with sub-elements of that vector. Now, sorting the original vector changes the elements in the second vector (there ...
0
votes
1answer
43 views
Boost shared pointer “runtime error” after it gets end of scope
I am practicing with boost and now I am testing boost shared pointers. I have a Util class which can read files. After I read the file, my "Read" method gives back a boost::shared_ptr which points to ...
1
vote
3answers
59 views
Confirmation of thread safety with std::unique_ptr/std::shared_ptr
My application has an IRC module that essentially is a normal client. Since this is heavily threaded, I stand the risk of a plug-in retrieving, for example, a users nickname - it is valid at the time, ...
-1
votes
2answers
86 views
Why shared_ptr<T> expects copy/move constructor in T?
I have the following code:
#include <memory>
using namespace std;
template<typename U> class A;
template<typename U>
class B
{
private:
shared_ptr<const ...
1
vote
3answers
46 views
boost::shared_ptr error at end of class
class SomeData{};
typedef boost::shared_ptr<SomeData> data_ptr;
class ABC {
public: ABC(){}
~ABC(){cached_ptr.reset(); }
data_ptr get_ptr() {data_ptr x; return x;} // it ...
1
vote
3answers
70 views
Copy boost::shared_ptr
typedef boost::shared_ptr<SomeData> data_ptr;
data_ptr cached_ptr; // class member
bool someWork(data_ptr& passed_ptr)
{
// must copy passed_ptr = cached_ptr under some conditions
// ...
-2
votes
2answers
87 views
Linked list with smart pointers
Out of boredom I've decided to mess around with the overused code:
#include <iostream>
#include <cassert>
#include <memory>
struct Node
{
Node* next;
int val;
};
int ...
0
votes
1answer
53 views
Compilation error when creating template & boost::shared_ptr based generic factory
I am using c++98 unfortunately.
template <class bT>
class Creator
{
public:
virtual bT* create() = 0;
};
template <class bT>
struct CreatorPtr
{
typedef boost::shared_ptr< ...
2
votes
2answers
74 views
Cannot dynamic cast when using dynamic_pointer_cast
Why does this code not work?
std::shared_ptr<Event> e = ep->pop();
std::shared_ptr<TrackerEvent> t;
t = std::dynamic_pointer_cast<TrackerEvent>(e);
I get the following error:
...
8
votes
9answers
2k 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 ...
0
votes
0answers
69 views
initialized pointers are not passed through constructor
I have two classes server and Broker . server is a member in Broker and some of its members are initialized when Broker members are initialized.
It is simple if you look at their constructors and some ...
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>
...
0
votes
3answers
1k views
How is the std::tr1::shared_ptr implemented?
I've been thinking about using shared pointers, and I know how to implement one myself--Don't want to do it, so I'm trying std::tr1::shared_ptr,and I have couple of questions...
How is the reference ...
3
votes
3answers
172 views
Is it good practice to bind shared pointers returned by functions to lvalue references to const?
Although it took me a while to get used to it, I now grew the habit of letting my functions take shared pointer parameters by lvalue-reference to const rather than by value (unless I need to modify ...
-2
votes
1answer
48 views
Arrays and smart pointers [closed]
1.1) Is there a possibility of a memory leak when using std::vector, QVector, boost::array (not quite understand the difference between them in the use of memory and what are the advantages of each)? ...
6
votes
6answers
109 views
Const correctness with objects containing shared_ptr
Consider the object:
class Obj
{
public:
Obj() : val(new int(1)) {}
int& get() {return *val;}
const int& get() const {return *val;}
private:
...
6
votes
4answers
224 views
Smart pointer wrapping penalty. Memoization with std::map
I am currently in the middle of a project where performance is of vital importance. Following are some of the questions I had regarding this issue.
Question1
My project involves plenty of ...
2
votes
3answers
113 views
Shared pointers and raw pointers in same container
I need to populate container with shared pointers and raw pointers at same time.
I guess shared_ptr<T> may be forced to behave like T*, if constructed with no-op deleter and no-op ...
5
votes
1answer
151 views
std::shared_ptr not working with range for
I'm trying to iterate over a temporary object in a range for loop. It looks like the object gets desctucted before the loop begins executing. Is this a standard compliant behaviour? I'm using gcc 4.8.
...
1
vote
1answer
51 views
compilation error with std::priority_queue derived class using std::shared_ptr
I derived from std::priority_queue to implement a few specialized methods. One of these
methods somekind of a fixed queue when I add an element and the queue is full, the smallest element is dropped ...
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 ...
0
votes
0answers
114 views
std::shared_ptr & boost::shared_ptr difference
I've the following code:
// interface.h
#ifndef INTERFACE_H
#define INTERFACE_H
#include <memory>
class IInterface {
public:
virtual ~IInterface() = 0;
virtual void ...
7
votes
3answers
462 views
C++11 When clearing shared_ptr, should I use reset or set to nullptr?
I have a question about C++11 best practices. When clearing a shared_ptr, should I use the reset() function with no parameter, or should I set the shared_ptr to nullptr? For example:
...
0
votes
1answer
70 views
Copy-on-write pointer object in C++
I tried to follow this article
http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Copy-on-write on how to implement copy on write pointers in C++. The problem is, it doesn't work for me.
The crux of ...
69
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 ...
2
votes
1answer
70 views
shared boost::shared_ptr<> variable is thread safe? [duplicate]
boost::shared_ptr<A> g_a;
void func1(boost::shared_ptr<A> v)
{
g_a = v;
}
void func2()
{
boost::shared_ptr<A> a = g_a;
// a is good?
}
When func1() and func2() is ...
0
votes
1answer
137 views
Passing a variable between callback and main
I'm using ROS with C++ and after receiving data from a topic in void callback(), I need to pass this data to a variable in int main(). What I've found out so far is that I can do it using a boost ...
0
votes
1answer
102 views
Global smart pointer is not cleaning up properly
I have a c++ interface, and the derived class of that interface in one DLL, I am using the class in another process by including the interface header file, and importing a factory function that ...
7
votes
10answers
9k views
Fully thread-safe shared_ptr implementation
Does anybody know of a fully thread-safe shared_ptr implementation? E.g. boost implementation of shared_ptr is thread-safe for the targets (refcounting) and also safe for simultaneous shared_ptr ...
0
votes
3answers
33 views
Storing boost_shared pointers in a vector - Is it expensive
I know that vectors tend to make a copy of all objects pushed into them. My question is whether it would make sense to store a pointer to a boost::shared_ptr in a vector rather than the shared ptr ...
3
votes
5answers
61 views
Does adding a reference to a shared ptr increase the reference count
Suppose I have a method as such
void foo(const boost::shared_ptr<Pfoo>& rx)
{
myvector->push_back(rx);
}
I read that when a boost::shared_ptr is passed as a reference its reference ...
1
vote
1answer
44 views
boost::shared_* with copy constructor and assignment operator
I have a class that contains a boost::shared_array member. The other members are not dynamic - just a bunch of ints, no pointers. I would expect that the default copy constructor for such a class ...
5
votes
2answers
252 views
Temporary read-only copy of unique_ptr
I'm pretty new to C++11's smart pointers, and I'm trying to use them effectively in a project. In my project, I have a lot of functions that take a const reference to a vector of unique_ptr, do some ...
1
vote
1answer
70 views
Replacement of Poco::AutoPtr with boost
I am trying to replace Poco::AutoPtr with some alternative in boost. Here is what I have discovered so far:
What I have: below classess are being used with Poco::AutoPtr. They need to implement ...
0
votes
1answer
41 views
How to assign a boost::tuple to boost::shared_ptr
In my code I have something like this
shrd_ptr_obj st = boost::make_shared<Myobj>();
Myobj tp = boost::make_tuple(0,0,0,0,0 );
How do I make st point to tp ?
1
vote
2answers
94 views
Why does enable_shared_from_this lack direct access to the embedded weak_ptr?
I want to use boost signals2 with automatic connection management in a multithreaded application. My class inherits from enable_shared_from_this<> and i want to connect a member method from within ...
2
votes
1answer
78 views
Why is my program crashing in boost::enable_shared_from_this<>/boost::shared_ptr<>?
I'm trying to hunt down why a program is crashing in shared_ptr.
#0 0x00007fff90723212 in __pthread_kill ()
#1 0x00007fff93415b54 in pthread_kill ()
#2 0x00007fff93459dce in abort ()
#3 ...
0
votes
1answer
44 views
Passing shared_ptr via variable argument list
Is this possible to do and how would I pass the shared_ptr(s)? I found some related question (C++ variable number of arguments) but it does not fully address my question.
I have tried a few ways to ...




