Error when compiling vector< T >::iterator

A

atomik.fungus

Hi, I'm re-writting my matrix class to practice my programming and the
computer doesn't let me compile the next code: ( this example come
from the constructor of the class)

//the matrix is made of vectors of vectors

template< typename T >
matrix< T >::matrix( unsigned rows, unsigned columns )
{
vector< vector< T > >::iterator p;
....
}

if I change "vector< vector< T > >::iterator p" to "vector< vector<
int > >::iterator p"

then it compiles but it makes the use of templates useless because it
only works now for
matrix < int > (obvious)

the error that i get in the latest g++ is:
error: dependent-name 'std::vector<std::vector<T,
std::allocator<_CharT> >,std::allocator<std::vector<T,
std::allocator<_CharT> > > >::iterator' is parsed as a non-type, but
instantiation yields a type.

Can someone explain me whats happening here and how to fix it.

thanks
 
P

peter koch

Hi, I'm re-writting my matrix class to practice my programming and the
computer doesn't let me compile the next code: ( this example come
from the constructor of the class)

//the matrix is made of vectors of vectors

template< typename T >
matrix< T >::matrix( unsigned rows, unsigned columns )
{
vector< vector< T > >::iterator p;
...

}

if I change "vector< vector< T > >::iterator p" to "vector< vector<
int > >::iterator p"

then it compiles but it makes the use of templates useless because it
only works now for
matrix < int > (obvious)

the error that i get in the latest g++ is:
error: dependent-name 'std::vector<std::vector<T,
std::allocator<_CharT> >,std::allocator<std::vector<T,
std::allocator<_CharT> > > >::iterator' is parsed as a non-type, but
instantiation yields a type.

Can someone explain me whats happening here and how to fix it.

In the line "vector< vector< T > >::iterator p;", the compiler does
not know that the part that becomes before p is the name of a type.
This is because you are allowed to specialise templates, making
iterator a non-type name.
The fix is to prefix the typename with the keyword typename:
typename vector< vector< T > >::iterator p;

Your problem will not occur if you replace T with int because it now
knows the exact type of vector< vector< T > > and thus is aware that
the iterator of that class is indeed the name of a type.

/Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top