i want to pass an array of objects i have stored in one for loop to a second for loop in another method to display the contents. e.g:
public static Student[] add()
for(int i = 0; i < studentArray.length; i++)
{
System.out.print("Enter student name ");
studentName = EasyIn.getString();
System.out.print("Enter student Id ");
studentId = EasyIn.getString();
System.out.print("Enter mark ");
studentMark = EasyIn.getInt();
studentArray[i] = new Student(); //create object
tempObject = new Student(studentName,studentId,studentMark);
place = findPlace(studentArray,studentName, noOfElements);
noOfElements = addOne(studentArray, place, tempObject, noOfElements);
}
into here
public static void displayAll()
{
Student[] anotherArray = add();
for(int i = 0; i < anotherArray.length ; i++)
{
System.out.print(anotherArray[i].toString());
}
}
to call it in a menu here:
case '3': System.out.println("List All");
displayAll();
EasyIn.pause();
when i press 3 on the menu it just calls the add method again but when i add in the values into the array again then it displays the array. i just want to display the array only
download these 3 files and put them in the same folder and compile project2. it should run
http://www.multiupload.nl/SVS1GMOXE2
http://www.multiupload.nl/U9T1IASH8E
http://www.multiupload.nl/HL24I4O5U1
add()method you should put curly brackets{and}, and it shouldreturnsomethinf ofStudent[]type. – J.A.I.L. Apr 30 '12 at 10:47add()you are reconstructing the array and you only want this to happen once? – John B Apr 30 '12 at 10:47add()reconstructs the array, and you calladd()at the begining ofdisplayAll()(inside it), every time you calldisplayAll(), you'll be reconstructing the array. Try @mcfinnigan or @Rahul Borkar solutions. – J.A.I.L. Apr 30 '12 at 10:54