Name: Anonymous 2010-02-26 15:39
while (1 == 1) {
if (aktuell.next.data == p) {
aktuell.next = aktuell.next.next;
return;
}
}
I know at some point the if check while be true and return will stop the loop. But there has to be an other command than While (1 == 1).
Thanks
if (aktuell.next.data == p) {
aktuell.next = aktuell.next.next;
return;
}
}
I know at some point the if check while be true and return will stop the loop. But there has to be an other command than While (1 == 1).
Thanks