Codierungssammlungen klare Methode java
public void clear()
{
for (int i = 0; i < size; i++)
{
remove(i);
}
size = 0;
}
Sid Potti