我是一个使用 eclipse 的 Java 初学者,甚至在安装了那些正确的外部库之后,(我将它们安装到我的构建路径中,它们进入我的引用库部分)这将使我的工作变得容易,我不能使用它们一些原因。
import acm.*;
我用它来导入这个库的所有类,当我试图在我的程序中使用这些类时,由于某种原因它不起作用。如果我尝试使用 print() 方法,它会给我以下错误该库的 IOconsole 类的方法。
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method print(String) is undefined for the type ShortPrint
at ShortPrint.main(ShortPrint.java:5)
我不知道我是否错过了任何步骤,但我很确定我已经正确安装了库,只是无法使用它们。
编辑1:这是我的程序。
import acm.*;
public class ShortPrint {
public static void main(String []args) {
print ("hello");
}
}