Is it possible in Java to override ‘toString’ for an Objects array?

No. Of course you can create a static method User.toString( User[] ), but it won’t be called implicitly.

Leave a Comment