Skip to content

Commit 27f7d08

Browse files
committed
Array toString
1 parent 00c315c commit 27f7d08

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package v.o.i.d.array;
2+
3+
import java.util.Arrays;
4+
5+
public class ArrayToString {
6+
7+
public static void main(String[] args) {
8+
int[] groupId = new int[0];
9+
System.out.println("Group not found: " + groupId);
10+
System.out.println("Group not found: " + Arrays.toString(groupId));
11+
}
12+
}

0 commit comments

Comments
 (0)