私は Java でコーディングする方法を学ぼうとしていますが、今は Eclipse を使って引数を学んでいます。私はSam's Teach Yourself Java in 24 Hoursという本を読んでおり、その本を完全にフォローしています。ただし、日食では機能しません。私のコードは次のとおりです。
public class BlankFiller {
public static void main(String[] args) {
System.out.println("The " + arguments[0]
+ " " + arguments[1] + " fox "
+ "jumped over the "
+ arguments[2] + " dog.");
}
}
次に、実行→実行構成→引数に移動して引数を入力し、「レトロミンジェントパープルラクトース不耐症」をプログラム引数タブに入力し、適用して実行しますが、次のエラーが表示されます。
Exception in thread "main" java.lang.Error: Unresolved compilation problem
arguments cannot be resolved to a variable
arguments cannot be resolved to a variable
arguments cannot be resolved to a variable
at BlankFiller.main(BlankFiller.java:4)
私は何を間違っていますか?