Using the vector<type>::iterator With const

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
Maevik
Chaos Rift Junior
Chaos Rift Junior
Posts: 230
Joined: Mon Mar 02, 2009 3:22 pm
Current Project: www.keedepictions.com/Pewpew/
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Location: Long Beach, CA

Using the vector<type>::iterator With const

Post by Maevik »

So after Marauder gave me some sound advice, I've been trying to implement the use of iterators into my for loops. However, being the diligent little code monkey I am, I've been trying to use the const keyword wherever I can, and the two concepts are not playing nicely :(

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>'
So as you can see, we get a type mismatch. I suppose I could remedy this by making a copy of my vector and looping through the copy, but that would take time. My question is: What are the possible solutions for this? Which would tax the system the least or take the least time?
My love is like a Haddoken, it's downright fierce!
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Using the vector<type>::iterator With const

Post by MarauderIIC »

Internet says "You are trying to use a non-const iterator on a const reference. Use std::vector<int>::const_iterator it = data.begin();"
And yeah, CodeCriminal had it right.

Oh yeah, and your error "std::_Vector_const_iterator<_Ty,_Alloc>' to 'std::_Vector_iterator" also says to use a const_iterator :)

You could also remove the const keyword from your reference.

Oh, by the way, != is used here instead of < in case the vector shifts in memory (or is empty? I forget, exactly).
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
Maevik
Chaos Rift Junior
Chaos Rift Junior
Posts: 230
Joined: Mon Mar 02, 2009 3:22 pm
Current Project: www.keedepictions.com/Pewpew/
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Location: Long Beach, CA

Re: Using the vector<type>::iterator With const

Post by Maevik »

Sweet! So the program is fully functional like this (also added a loop to populate the vector):

Code: Select all

#include <iostream>
#include <vector>

using namespace std;

void display( const vector<int>& data );

int main()
{
	vector<int> nums;
	int counter = 0;

	for( int i = 0 ; i != 20 ; ++i )
	{
		nums.push_back( ( counter * 3 ) );
		counter++;
	}
	display( nums );

}
void display( const vector<int>& data )
{
	for( vector<int>::const_iterator i = data.begin() ; i != data.end() ; ++i )
	{
		cout << *i << endl;
	}
}
Thanks again guys, hope this thread is helpful to someone :D
My love is like a Haddoken, it's downright fierce!
User avatar
hellknight
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 37
Joined: Fri Apr 24, 2009 2:54 am
Current Project: Non
Favorite Gaming Platforms: Pc, NES, PS1, PS2, xBOX
Programming Language of Choice: c,c++,c#,JS, haskell
Location: India

Re: Using the vector<type>::iterator With const

Post by hellknight »

i was just wandering, if he wanted to "protect" his data from changing,he could have always passed it by value......right??????..
Dont Mind the typos...i m too lazy to correct them. :P
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Using the vector<type>::iterator With const

Post by MarauderIIC »

Yes. And no. Pass by value is slow for containers and classes, since they make a copy, and as a general rule they should be passed by reference/pointer with appropriate const correctness.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
hellknight
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 37
Joined: Fri Apr 24, 2009 2:54 am
Current Project: Non
Favorite Gaming Platforms: Pc, NES, PS1, PS2, xBOX
Programming Language of Choice: c,c++,c#,JS, haskell
Location: India

Re: Using the vector<type>::iterator With const

Post by hellknight »

MarauderIIC wrote:Yes. And no. Pass by value is slow for containers and classes, since they make a copy, and as a general rule they should be passed by reference/pointer with appropriate const correctness.
i guess u r right, moreover const doesnt hurt ur runtime performence. :D
Dont Mind the typos...i m too lazy to correct them. :P
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: Using the vector<type>::iterator With const

Post by Ginto8 »

hellknight wrote:i was just wandering, if he wanted to "protect" his data from changing,he could have always passed it by value......right??????..
Or he could make the const vector<type>& a vector<type> const&. This doesn't copy, but it doesn't allow the target to be modified either. Also, this doesn't bring up any problems with const [type]& if you want to pass it a non-const [type]. ;)
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Using the vector<type>::iterator With const

Post by eatcomics »

Maevik wrote:So after Marauder gave me some sound advice, I've been trying to implement the use of iterators into my for loops. However, being the diligent little code monkey I am, I've been trying to use the const keyword wherever I can, and the two concepts are not playing nicely :(
Don't use so many Consts... I think I might do some programming, seeing as how I finished my homework and my parents are gone... They can't tell me to go do something while I'm right in the middle of making an item function...
Image
Post Reply