In article <5ai7ieF2olo04U1@mid.individual.net>,
"Alf P. Steinbach" <alfps@start.no> wrote:
* wombat:
In article <5ai18qF2oubsoU1@mid.individual.net>,
"Alf P. Steinbach" <alfps@start.no> wrote:
* wombat:
Is there a way to store the addresses of containers in a container and
have an iterator point to each of the containers in this container?
Example:
vector<string> container_a, container_b, container_ix;
container_a and container_b would be stored in container_ix
typedef StringVector vector<string>;
vector<StringVector> ix(2);
StringVector& a = ix[0];
StringVector& b = ix[1];
and an
iterator pointing to a position in container_ix to determine whether you
are looking at container_a or container_b.
Huh.
What is the problem you're trying to solve?
Ok, container_ix contains container_a and container_b:
container_ix.push_back(&container_a);
container_ix.push_back(&container_b);
itr=container_ix.begin();
while(itr!=container_ix.end())
{
// With the first pass, itr points to container_a.
// With the second pass, itr points to container_b.
itr++;
}
Of course this code doesn't work, but it gives (hopefully) an idea of
what I'm looking to try to do.
Huh, the code should work just fine. Provided, of course, you declare
container_ix correctly. Assuming
vector<string> container_a, container_b;
that would be
vector< vector<string>* > container_ix;
By the way, please look up the FAQ's posting guidelines, about how to
post a question about Code That Does Not Work.
Hth.,
- Alf
Ok, I glanced over the FAQ about posting.. didn't see anything. There
were several links that I visited and still didn't find it. I even did a
search. Came up with two results but off hand still didn't find
anything. I didn't post how I declared the container, didn't think of
that so if that was the problem sorry for any problems I'm causing.
I got the code to work, declared the iterator as follows:
vector<vector<string>*>::iterator itr;
It does hold the correct address of the container it's pointing to (like
a pointer should) but actually using it is still a problem. Using *itr
would work for a regular iterator.
calling one of the vector's methods: (*iter)->begin().