asylu3
10-08-2003, 01:11 AM
import java.util.Vector;
Vector myVector = new Vector();
myVector.add("Hello"); //adds the string 'Hello' to the vector object
myVector.add("hi"); //adds the string 'hi' to the vector object.
Vector myVector = new Vector();
myVector.add("Hello"); //adds the string 'Hello' to the vector object
myVector.add("hi"); //adds the string 'hi' to the vector object.