
So when I pass a vector to a display function, I use the format:
void display( const vector<type>& data )
which, obviously, allows me to pass by reference and still protect the data in my vector (since a display function should not be allowed to manipulate my data, right)
So anyway, if I try to use the iterator for looping through my vector (which is a const reference), I get an error. I made a simple program to illustrate the error:
Code: Select all
#include <iostream>
#include <vector>
using namespace std;
void display( const vector<int>& data );
int main()
{
vector<int> nums;
display( nums );
}
void display( const vector<int>& data )
{
for( vector<int>::iterator i = data.begin() ; i != data.end() ; ++i )
{
cout << *i << endl;
}
}
Code: Select all
Error 1 error C2440: 'initializing' : cannot convert from 'std::_Vector_const_iterator<_Ty,_Alloc>' to 'std::_Vector_iterator<_Ty,_Alloc>'