So I need to print out the different instances of the array. Using the code below. Everything in the array prints out even the portion of the array that is not filled with anything. If i add a break statement in each if statement it only prints the last instance of that array and not everything that that stored.
public static void display(ExampleA[] example)
{
for(int pos = 0; pos < example.length; pos++)
{
output += "Example number " + (i + 1);
if(example[pos] instanceof A)
{
output += example[pos].toString() + "\n\n";
}
if(example[pos] instanceof B)
{
output += example[pos].toString() + "\n\n";
}
}
What I would like it to do is print out everything in the array grouped together by the instance. and not the whole array that is partially empty.
You can create two
output
variables, one for theA
instances and one for theB
instances. Then you can append each instance to its corresponding output variables, and print out the output variables at the end. Here's an example using your code:You should also look into using StringBuilder to append the Strings, as it's much faster than using
+=