Tagged Questions
11
votes
6answers
1k views
Pointers to elements of std::vector and std::list
I'm having a std::vector with elements of some class ClassA. Additionally I want to create an index using a std::map<key,ClassA*> which maps some key value to pointers to elements contained in ...
4
votes
3answers
743 views
std::vector of functions
I want a std::vector to contain some functions, and that more functions can be added to it in realtime. All the functions will have a prototype like this:
void name(SDL_Event *event);
I know how to ...
2
votes
4answers
125 views
Segmentation fault trying to dereference a pointer from a vector of pointers
I have a vector of pointers to objects that I am iterating through using std::vector::iterator`. Since the element returned is itself a pointer I dereference the iterator twice, once to return the ...
2
votes
4answers
102 views
strings and a store
In the below program a string is added to an empty store. Then the address of this store element is stored in the pointer 's1'. Then another string is added and this somehow causes the pointer to the ...
1
vote
4answers
605 views
Using a pointer to an object stored in a vector… c++
I have a vector of myObjects in global scope.
std::vector<myObject>
A method is passed a pointer to one of the elements in the vector.
Can this method increment the pointer, to get to the ...
0
votes
4answers
102 views
Pointer of std::vector of std::vector
quick question :
Is it possible to make a pointer that can reference a std::vector<std::vector<int> >or a std::vector<std::vector<double>> ?
Thx
0
votes
2answers
91 views
Declaring a vector of pointers to vector of strings
I have a 2D table of strings (using STL vector) and am trying to modify so that the table is a vector of pointers to vectors of strings. I know that this will require changing the constructor so that ...
0
votes
2answers
99 views
C++ pointer to a vector of objects, need to access attributes
I have a vector called actorVector which stores an array of objects of type actorManager.
The actorManager class has a private attribute, which is also an object of type GLFrame. It has an accessor, ...
0
votes
2answers
160 views
How does std::vector copy objects to its internal storage
I have the following problem:
void add(){
cRow Row();
Row.add("Column", "Value");
std::vector<cRow> mRows;
mRows.push_back(Row);
}
cRow::cRow(): mCol(NULL), mVal(NULL) {
}
...