Java: Is there any short combination to convert array of primitive to List & receive "printable" ver
- by blackliteon
int[] arrc = new int[] {1, 2, 3};
System.out.println(new ArrayList(Arrays.asList(arrc)));
prints address, but i desire to use toString as in ArrayList.
Is it possible ?