I want to make an array of lists that contain a list.

For example something like this

list<list<int>> L[5];

Obviously this code doesn't work in all compilers.

Which is the best way to create this kind of struct cause i think i am thinking wrong here.

link|improve this question

What error message are you getting from your compiler? – RedX Jul 25 '11 at 9:40
It is not so obvious to me, you should provide more information about what is not working (compiler error, runtime error, wrong output, etc.). – Luc Touraille Jul 25 '11 at 9:51
@Luc the problem has to do with c++0x standards. It seems that some compilers are using some features by default. This causes this kind of problems when you have to compile your application with different compilers. – marcus hatchenson Jul 25 '11 at 10:04
@messkech, no, this problem doesn't have to do with c++0x. You just have to add the damn space! – unkulunkulu Jul 25 '11 at 12:15
@unkulunkulu understood and that's what i did but what i say is true – marcus hatchenson Jul 25 '11 at 12:22
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

This code should work and it's a possible approach to you task.

One guess is that >> should have a space in between for some compilers.

Like this:

list<list<int> > L[5];
link|improve this answer
1  
It must have a space there for all non C++0x compatible compilers. MSVC supports >> as an extension from version 2005 or 2008 onwards. – RedX Jul 25 '11 at 9:39
If i add -std=c++0x it compiles with no errors – marcus hatchenson Jul 25 '11 at 9:51
1  
@RedX: it is not a question of compatible. Current standard is C++ 2003, which defines >> as right-shift and nothing else. MSVC in that respect is not "compatible", but rather provides this as a non-portable extension to their compiler. – phresnel Jul 25 '11 at 9:52
@messkech, you should rather add a space. You don't switch to C++ for example because struct X { int a; }; X y; doesn't compile in C, do you? Other way is to learn c++0x to full extent. – unkulunkulu Jul 25 '11 at 9:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.