次の例は、ループを通じて配列を出力する方法を示しています:
/* 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 中国語 Web サイト (www.php. cn) にご注意ください。