22 Jul
2011
22 Jul
'11
4:26 a.m.
2011/7/22 Nathan Lewis
char_string_vector_iterator it = mymap->char_string_vector_vector_.begin(); while (it != mymap->char_string_vector_vector_.end()) { // error is on the line below cout << "Inserted String is: " << it << endl;
cout << "Inserted String is: " << *it << endl; You need the dereference not the iterator itself. HTH