다음 예에서는 루프를 통해 배열을 출력하는 방법을 보여줍니다.
/* author by w3cschool.cc 文件名:Main.java */public class Welcome { public static void main(String[] args){ String[] greeting = new String[3]; greeting[0] = "This is the greeting"; greeting[1] = "for all the readers from"; greeting[2] = "Java Source ."; for (int i = 0; i < greeting.length; i++){ System.out.println(greeting[i]); } }}
위 코드를 실행한 결과는 다음과 같습니다.
This is the greeting For all the readers From Java source .
위는 Java 예제 - 배열 출력 내용, 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!