Java Array Print printArray(Object a[])

Here you can find the source of printArray(Object a[])

Description

Prints the contents of the array.

License

Open Source License

Parameter

Parameter Description
a the array to print the contents of

Declaration

public static void printArray(Object a[]) 

Method Source Code

//package com.java2s;
/*/* w w w  . j  a v a 2 s  .  com*/
 *   ArrayUtils.java
 *
 *   Copyright (C) 2006, 2007 Alexander Technological Educational Institute of Thessaloniki
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
     
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
     
 *   You should have received a copy of the GNU General Public License along
 *   with this program; if not, write to the Free Software Foundation, Inc.,
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */

public class Main {
    /**
     * Prints the contents of the array.
     * @param a the array to print the contents of
     */
    public static void printArray(Object a[]) {
        for (int i = 0; i < a.length; i++)
            System.out.print(a[i].toString() + " ");
    }

    /**
     * Prints the contents of the array.
     * @param a the array to print the contents of
     */
    public static void printArray(double a[]) {
        for (int i = 0; i < a.length; i++)
            System.out.print(a[i] + " ");
    }

    /**
     * Prints the contents of the array.
     * @param a the array to print the contents of
     */
    public static void printArray(int a[]) {
        for (int i = 0; i < a.length; i++) {
            System.out.print(a[i] + " ");
        }
    }

    /**
     * Prints the contents of the array.
     * @param a the array to print the contents of
     */
    public static void printArray(int a[][]) {
        for (int i = 0; i < a.length; i++) {
            for (int j = 0; j < a[i].length; j++)
                System.out.print(a[i][j] + " ");
            System.out.println();
        }
    }
}

Related

  1. printArray(int[] array)
  2. printArray(int[] array)
  3. printArray(int[] array)
  4. printArray(int[] array, int start, int end)
  5. printArray(int[] nums)
  6. printArray(Object[] arr)
  7. printArray(Object[] array)
  8. printArray(Object[] array)
  9. printArray(Object[] cells)