Here you can find the source of println(Object[] objs)
public static void println(Object[] objs)
//package com.java2s; //License from project: Open Source License import java.util.Arrays; public class Main { public static void println(Object[] objs) { System.out.println(Arrays.asList(objs)); }/*from w w w . ja v a 2 s .c o m*/ public static void println(Object obj) { System.out.println(obj); } }