int intvec[];
intvec = new int[200]; // to create the object anywhere, or int intvec[] = new int[200]; // to create the object where it is declared
intvec[-1]
and
intvec[300]
will generate a subscript range exceptionlength
instance
variable (e.g. intvec.length
)String NameTable[] = new String[1000];