|
Re: Please help me with this list
|
Posted: May 9, 2002 3:20 AM
|
|
1. theData of type Vector for storing the elements of the list 2.maxElements of type int for storing the maximum size of the list.
import java.util.Vector; public class MylList { private Vector aList; private int maxElements;
public MyList (int m) { aList = new Vector(20); maxElements = m; }
I don't know what was wrong with it, but, You als o can do this. If you want, you can send me your class: parijs_stefan@yahoo.com Then I watch it. And see what I can do.
Stefan
|
|