Java Array Print println(Object[] objs)

Here you can find the source of println(Object[] objs)

Description

println

License

Open Source License

Declaration

public static void println(Object[] objs) 

Method Source Code


//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);
    }
}

Related

  1. printErrInvocationString(String cls, String[] args)
  2. printfirstBytes(String comment, byte[] input)
  3. printFloatArray(float[] arr)
  4. printFloatArray(float[] array)
  5. println(int[] array)
  6. printMap1(String[] s)
  7. printOutArrayProperty(String key, E[] property, boolean isDefault)
  8. printParameterMap(Map parameters)
  9. printPoint(double[] ds)