Here you can find the source of printArray(Object a[])
Parameter | Description |
---|---|
a | the array to print the contents of |
public static void printArray(Object a[])
//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(); } } }