>Is there a "neater" way to code the following?
System.out.println ( "All the values in the array are: " );
for ( T x: array1 )
System.out.println ( x );
Change T to whatever the type of the array is. Or, if you aren't up to the latest version of Java:
System.out.println ( "All the values in the array are: " );
for ( int i = 0; i < array1.length; i++ )
System.out.println ( array1[i] );
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
@rotten69 was it worth to reopen 6 year old thread? (Created 02-05-05)
Thread closed, before another time-traveler arrival
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902