Hi.
I was wondering how do I access whole bunch of array of method.
tom is an array of object.
Student[] tom = new Student[10]; for(int i = 0; i < 10; i++){ tom[i] = new Student(); }
tom[].accessMethod(); //Not working
Error Message: class expected and ; expected .What to do?