我正在尝试学习如何使用 Java 进行编码,而我现在只是在使用 Eclipse 学习参数。我正在阅读《Sam's Teach Yourself Java in 24 Hours》这本书,并且我完全按照这本书进行了学习;但是,它在 Eclipse 中不起作用。我的代码如下:
public class BlankFiller {
public static void main(String[] args) {
System.out.println("The " + arguments[0]
+ " " + arguments[1] + " fox "
+ "jumped over the "
+ arguments[2] + " dog.");
}
}
然后我通过运行→运行配置→参数输入我的参数,然后在程序参数选项卡中输入“retromingent Purple lactose-incompatible”,点击应用然后运行,但它只是给了我这个错误:
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)
我究竟做错了什么?