109k views
0 votes
What is arrays toString in Java?

1 Answer

1 vote

Step-by-step explanation:

The toString() method in Java is used to return a string representation of an array. It returns a string with the toString representation of each element of the array, separated by commas. For example, if you have an array of ints {1, 2, 3}, the toString() method would return the string “[1, 2, 3]”.

User Richard Jarram
by
7.5k points