다음 예에서는 MainClass 클래스의 printArray 메소드를 오버로드하여 다양한 유형(정수, 실수 및 문자)의 배열을 출력하는 방법을 보여줍니다.
/* author by w3cschool.cc MainClass.java */public class MainClass { public static void printArray(Integer[] inputArray) { for (Integer element : inputArray){ System.out.printf("%s ", element); System.out.println(); } } public static void printArray(Double[] inputArray) { for (Double element : inputArray){ System.out.printf("%s ", element); System.out.println(); } } public static void printArray(Character[] inputArray) { for (Character element : inputArray){ System.out.printf("%s ", element); System.out.println(); } } public static void main(String args[]) { Integer[] integerArray = { 1, 2, 3, 4, 5, 6 }; Double[] doubleArray = { 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7 }; Character[] characterArray = { 'H', 'E', 'L', 'L', 'O' }; System.out.println("输出整型数组:"); printArray(integerArray); System.out.println("\n输出双精度型数组:"); printArray(doubleArray); System.out.println("\n输出字符型数组:"); printArray(characterArray); }}
위 코드의 출력 결과는 다음과 같습니다.
输出整型数组: 1 2 3 4 5 6 输出双精度型数组: 1.1 2.2 3.3 4.4 5.5 6.6 7.7 输出字符型数组: H E L L O
위는 배열 요소의 내용을 출력하는 Java 예제입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!