I'm fairly new to Java, and I'm having some troubles with a vector. Say I have something like this:
class Blah {
public int test;
public Blah() {
test=3;
}
}
Vector v = new Vector(0,1);
v.addElement(new Blah());
int t =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.