Is it possible in Java to override a toString for an Objects array?
For example, let\'s say I created a simple class, User (it doesn\'t really matter wh
User
Try this
User[] array = new User[2]; System.out.println(Arrays.asList(array));
of course if you have customized user.toString() method
user.toString()