S
SpeedRunner
Guest
For anyone filmiliar with the Map interface, I need to change my Map into an Array.
Student[] stuArray = stuMap.toArray(new Student[stuMap.size()]);
That's what it would be, if only I had a toArray method. There has got to be a way to make it into an array indirectly, anyone know how?
Student[] stuArray = stuMap.toArray(new Student[stuMap.size()]);
That's what it would be, if only I had a toArray method. There has got to be a way to make it into an array indirectly, anyone know how?