Jak udělat v C++ aby metoda vracela odkaz na null? Mám toto:
Student SeznamStudentu :: najdiStudenta(int id)
{
list<Student>::iterator i;
for(i=studenti.begin(); i != studenti.end(); ++i)
{
if ((*i).getId() == id) return (*i);
}
return null; // toto samozdrejme neprojde kompilaci :-(, tohle jsem si pujcil z Javy :-)
}
Když se student nenajde, tak chci vrátit null. Ví někdo, jak na to?