Dlaczego to nie działa?
Błąd wyświetla się gdy chce wyświetlić zawartość listy na która wskazuje iterator.
#include <iostream>
#include <list>
using namespace std;
class Liczba
{
public:
int x;
int y;
};
int main()
{
list<Liczba> liczba;
for(list<Liczba>::iterator iter = liczba.begin(); iter!= liczba.end(); iter++)
cout << *iter;
return 0;
}