Tagged Questions
5
votes
1answer
104 views
Why does C++ shared pointer not behave like standard pointer for iterators?
I'm about to make a random number generator in C++ and in order to avoid copying too big vectors, I wanted to pass pointers to them. I don't want to take care of garbage collection myself. That's why ...
-1
votes
1answer
100 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
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)? ...
-1
votes
2answers
71 views
Basic - shared_ptr to vector of vectors of values
I have a vector of a vectors of objects containing just a few integers.
The outer vector holds hundreds of vectors, those hold thousands to hundreds of thousands of Data objects.
I am using a ...
1
vote
1answer
76 views
When making an instance with shared_ptr, what should happen with the pointer instance variables?
Alright, here I have this small example of my complex class
class LivingObject
{
Ogre::SceneNode* myNode;
Gorilla::ScreenRenderable* myScrRend;
Gorilla::Layer* myRendLayer;
Gorilla::Rectangle* ...
1
vote
1answer
135 views
why vector push_back<shared_ptr<T>> not work in a for loop for my defined class [closed]
I want use std::vector.push_bask to store 20 numbers of shared_ptr in a for loop.
But from the output: it seems it only pushed one.
And vector::push_back> 20 times worked as designed.
Could some body ...
0
votes
1answer
127 views
C++ Passing std::vector< boost::shared_ptr< foo > >
I am currently learning the basics of the STL and boost libraries and wanted some assistance. Let me first describe where I am at I want to construct a vector of shared_ptrs of say some class foo. ...
2
votes
2answers
81 views
Identifying which Base Class shared_ptr has been passed into a Super Class shared_ptr vector
I am working on a C++ project, specifically implementing a shunting yard algorithm.
I have a function that creates a vector of shared_ptr's of type super class, but the classes that are being pushed ...
3
votes
4answers
291 views
How can I erase a shared_ptr from vector
Like the codes below, m_vSprites is a vector of shred_ptr, if one of his elements update fail, I would like to erase it from the vector, but my codes crash when I would like to using erase. But I ...
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: ...
0
votes
0answers
255 views
Returning a vector of const from a vector of non-const
I have the following code that I'm writing for a Database class to read data from a file:
typedef std::vector<char> CharVec;
typedef std::vector<const char> ConstCharVec;
typedef ...
2
votes
2answers
137 views
Trouble switching from vector of dumb pointers to boost::shared_ptr
Alright, this has had me stumped on and off for a couple of months now, so I'll see if anyone else can help with this.
So in my main program I have two kinds of structs (solarBody_t, ship_t) that are ...
0
votes
1answer
252 views
C++ using std::accumulate to generate a map<int,int>
I have a problem creating a std::map from a vector of pointers, called "files", each one points to an object with three member variables, one of which is "int size". The key of the map would be the ...
1
vote
3answers
635 views
return vector<Foo> or shared_ptr<vector<Foor>>?
in a function, which "return" would be more appropriate?
A. vector<Foo> ?
B. shared_ptr<vector<Foor>> ?
In other words, which copy is less heavy, what would you do, and why?
-1
votes
5answers
216 views
how to store and reference large amount of data in c++
I am using a vector of strings in order to store some data in memory. Database is not an option. More precisely an array of vector of strings. A simple scenario: I need to store the names of people ...
1
vote
3answers
594 views
boost.python expose function that returns vector<MyClass>
I'm writing an extension module for Python in C++ and I am using boost.python. I want to expose a function that returns a vector<MyClass>. I'm not exactly sure how to do this and how it will ...
2
votes
5answers
336 views
Auto delete object while cycling vector
I have an std::vector of objects and i cycle it calling some methods of the object. One of them will check a particular condition and if needed will delete itsef from the vector. The point is that ...
3
votes
3answers
602 views
Implicit conversion of vector<shared_ptr<Foo> > to vector<shared_ptr<const Foo> >
According to this page you can implicitly convert shared_ptr<Foo> to shared_ptr<const Foo>. That makes good sense.
However, I run into an error when I try to convert a std::vector ...
7
votes
1answer
266 views
Safely convert (vector of shared_ptr to objects) to (vector of shared_ptr to constant objects)
class A {};
typedef shared_ptr<const A*> AConstPtr;
typedef shared_ptr<A*> APtr;
vector<APtr> ptr;
const vector<AConstPtr>* foo()
{
return &ptr;
}
This code does ...
2
votes
3answers
1k views
Wrapping std::vector of boost::shared_ptr in SWIG for Python
EDIT: Solved, my mistake; explained in my answer.
I have this:
std::vector < boost::shared_ptr < Entity > > entities;
and I try to expose it through SWIG like this:
%include ...
1
vote
1answer
232 views
Passing a list of derived classes to a function expecting a list of base classes in C++
I have the following classes
class Parent {
virtual void doStuff() = 0;
};
class Child : public Parent {
void doStuff() {
// Some computation here
}
};
And I have a function with the ...
0
votes
2answers
2k views
Vectors of std::shared_ptr Lose Data
I am attempting to build std::vectors and std::maps of std::shared_ptrs, but they seem to have a habit of losing data. By that, I mean that when I push std::shared_ptrs into them, some of them will ...
22
votes
5answers
31k 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 ...
0
votes
3answers
905 views
Iterating & containers of smart pointers
I have a container of smart pointers to mutable objects. I have to write two *for_each* loops, one for accessing the objects as read-only data and another for mutable data. The compiler is telling ...
2
votes
7answers
2k views
c++ problem with polymorphism and vectors of pointers
Consider the following example code:
class Foo
{
};
class Bar : public Foo
{
};
class FooCollection
{
protected:
vector<shared_ptr<Foo> > d_foos;
};
class BarCollection : public ...